Interface IpsecpolicyAttributes

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

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

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

     grouping ipsecpolicy-attributes {
       leaf transform-protocol {
         type string;
       }
       leaf encapsulation-mode {
         type string;
       }
       leaf auth-algorithm {
         type string;
       }
       leaf encryption-algorithm {
         type string;
       }
       leaf pfs {
         type string;
       }
       container lifetime {
         leaf units {
           type string;
         }
         leaf value {
           type int32;
         }
       }
     }
     
    The schema path to identify an instance is neutron-vpnaas/ipsecpolicy-attributes
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        String getTransformProtocol()
        Transform protocol.
        Returns:
        java.lang.String transformProtocol, or null if not present
      • getEncapsulationMode

        String getEncapsulationMode()
        Encapsulation mode
        Returns:
        java.lang.String encapsulationMode, or null if not present
      • 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
      • getPfs

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

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