Interface IkepolicyAttributes

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject
    All Known Subinterfaces:
    Ikepolicy

    public interface IkepolicyAttributes
    extends org.opendaylight.yangtools.yang.binding.DataObject

    This class represents the following YANG schema fragment defined in module neutron-vpnaas

     grouping ikepolicy-attributes {
       leaf auth-algorithm {
         type string;
       }
       leaf encryption-algorithm {
         type string;
       }
       leaf phase-negotiation-mode {
         type string;
       }
       leaf pfs {
         type string;
       }
       leaf ike-version {
         type string;
       }
       container lifetime {
         leaf units {
           type string;
         }
         leaf value {
           type int32;
         }
       }
     }
     
    The schema path to identify an instance is neutron-vpnaas/ikepolicy-attributes
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        Class<? extends IkepolicyAttributes> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getAuthAlgorithm

        String getAuthAlgorithm()
        Authentication hash algorithm.
        Returns:
        java.lang.String authAlgorithm, or null if not present
      • getEncryptionAlgorithm

        String getEncryptionAlgorithm()
        Encryption algorithm
        Returns:
        java.lang.String encryptionAlgorithm, or null if not present
      • getPhaseNegotiationMode

        String getPhaseNegotiationMode()
        IKE mode
        Returns:
        java.lang.String phaseNegotiationMode, or null if not present
      • getPfs

        String getPfs()
        Perfect Forward Secrecy
        Returns:
        java.lang.String pfs, or null if not present
      • getIkeVersion

        String getIkeVersion()
        IKE Version
        Returns:
        java.lang.String ikeVersion, or null if not present
      • getLifetime

        Lifetime getLifetime()
        Security Association Lifetime
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.neutron.vpnaas.rev150712.ikepolicy.attributes.Lifetime lifetime, or null if not present