Interface ServiceBindings

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

    public interface ServiceBindings
    extends org.opendaylight.yangtools.yang.binding.ChildOf<InterfaceServiceBindingsData>, org.opendaylight.yangtools.yang.binding.Augmentable<ServiceBindings>

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

     container 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

    To create instances of this class use ServiceBindingsBuilder.

    See Also:
    ServiceBindingsBuilder
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        @Nullable java.util.List<ServicesInfo> getServicesInfo()
        Returns:
        java.util.List servicesInfo, or null if not present
      • nonnullServicesInfo

        default @NonNull java.util.List<ServicesInfo> nonnullServicesInfo()
        Returns:
        java.util.List servicesInfo, or an empty list if it is not present