Interface BoundServicesState

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<BoundServicesState>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<BoundServicesStateList>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.Identifiable<BoundServicesStateKey>

    public interface BoundServicesState
    extends org.opendaylight.yangtools.yang.binding.ChildOf<BoundServicesStateList>, org.opendaylight.yangtools.yang.binding.Augmentable<BoundServicesState>, org.opendaylight.yangtools.yang.binding.Identifiable<BoundServicesStateKey>

    This class represents the following YANG schema fragment defined in module interface-service-bindings

     list bound-services-state {
       key "interface-name service-mode";
       leaf interface-name {
         type string;
       }
       leaf service-mode {
         type identityref {
           base service-mode-base;
         }
       }
       leaf dpid {
         type uint64;
       }
       leaf port-no {
         type uint32;
       }
       leaf if-index {
         type int32;
       }
       leaf interface-type {
         type identityref {
           base interface-type;
         }
       }
     }
     
    The schema path to identify an instance is interface-service-bindings/bound-services-state-list/bound-services-state

    To create instances of this class use BoundServicesStateBuilder.

    See Also:
    BoundServicesStateBuilder, BoundServicesStateKey
    • Field Detail

      • QNAME

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

      • implementedInterface

        default java.lang.Class<BoundServicesState> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getInterfaceName

        @Nullable java.lang.String getInterfaceName()
        Returns:
        java.lang.String interfaceName, or null if not present
      • getServiceMode

        @Nullable java.lang.Class<? extends ServiceModeBase> getServiceMode()
        Returns:
        java.lang.Class serviceMode, or null if not present
      • getDpid

        @Nullable org.opendaylight.yangtools.yang.common.Uint64 getDpid()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint64 dpid, or null if not present
      • getPortNo

        @Nullable org.opendaylight.yangtools.yang.common.Uint32 getPortNo()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint32 portNo, or null if not present
      • getIfIndex

        @Nullable java.lang.Integer getIfIndex()
        Returns:
        java.lang.Integer ifIndex, or null if not present
      • getInterfaceType

        @Nullable java.lang.Class<? extends org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.interfaces.rev140508.InterfaceType> getInterfaceType()
        Returns:
        java.lang.Class interfaceType, or null if not present