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

    @Generated("mdsal-binding-generator")
    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()
        Return authAlgorithm, or null if it is not present.
             
                 Authentication hash algorithm.
             
         
        Returns:
        java.lang.String authAlgorithm, or null if it is not present.
      • getEncryptionAlgorithm

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

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

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

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

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