Interface ServicesInfo

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<ServicesInfo>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<ServiceBindings>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.Identifiable<ServicesInfoKey>

    public interface ServicesInfo
    extends org.opendaylight.yangtools.yang.binding.ChildOf<ServiceBindings>, org.opendaylight.yangtools.yang.binding.Augmentable<ServicesInfo>, org.opendaylight.yangtools.yang.binding.Identifiable<ServicesInfoKey>

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

     list services-info {
       key "interface-name service-mode";
       leaf interface-name {
         type string;
       }
       leaf service-mode {
         type identityref {
           base service-mode-base;
         }
       }
       list bound-services {
         key service-priority;
         max-elements 16;
         leaf service-priority {
           type uint8;
         }
         leaf service-type {
           type identityref {
             base service-type-base;
           }
         }
         leaf service-name {
           type string;
         }
       }
     }
     
    The schema path to identify an instance is interface-service-bindings/service-bindings/services-info

    To create instances of this class use ServicesInfoBuilder.

    See Also:
    ServicesInfoBuilder, ServicesInfoKey
    • Field Detail

      • QNAME

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

      • implementedInterface

        default java.lang.Class<ServicesInfo> 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
      • getBoundServices

        @Nullable java.util.List<BoundServices> getBoundServices()
        Returns:
        java.util.List boundServices, or null if not present
      • nonnullBoundServices

        default @NonNull java.util.List<BoundServices> nonnullBoundServices()
        Returns:
        java.util.List boundServices, or an empty list if it is not present