Interface SessionPersistence

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<SessionPersistence>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<PoolAttributes>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject

    public interface SessionPersistence
    extends org.opendaylight.yangtools.yang.binding.ChildOf<PoolAttributes>, org.opendaylight.yangtools.yang.binding.Augmentable<SessionPersistence>
    The session persistence algorithm. This algorithm is a dictionary with type and cookie_name keys.

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

     container session-persistence {
       leaf cookie-name {
         type string;
       }
       leaf type {
         type string;
       }
     }
     
    The schema path to identify an instance is neutron-lbaasv2/pool-attributes/session-persistence

    To create instances of this class use SessionPersistenceBuilder.

    See Also:
    SessionPersistenceBuilder
    • Field Detail

      • QNAME

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

      • implementedInterface

        default Class<SessionPersistence> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getCookieName

        String getCookieName()
        Cookie Name.
        Returns:
        java.lang.String cookieName, or null if not present
      • getType

        String getType()
        Cookie type.
        Returns:
        java.lang.String type, or null if not present