Interface GroupFeatures

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject
    All Known Subinterfaces:
    GetGroupFeaturesOutput, GroupFeatures, GroupFeaturesReply, GroupFeaturesUpdated, MultipartReplyGroupFeatures

    @Generated("mdsal-binding-generator")
    public interface GroupFeatures
    extends org.opendaylight.yangtools.yang.binding.DataObject

    This class represents the following YANG schema fragment defined in module opendaylight-group-types

     grouping group-features {
       leaf-list group-types-supported {
         type identityref {
           base group-type;
         }
       }
       leaf-list group-capabilities-supported {
         type identityref {
           base group-capability;
         }
       }
       leaf-list max-groups {
         type uint32;
         max-elements 4;
         ordered-by user;
       }
       leaf-list actions {
         type uint32;
         max-elements 4;
         ordered-by user;
       }
     }
     
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
        YANG identifier of the statement represented by this class.
    • Method Detail

      • implementedInterface

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

        @Nullable Set<Class<? extends GroupType>> getGroupTypesSupported()
        Return groupTypesSupported, or null if it is not present.
        Returns:
        Set<Class<? extends GroupType>> groupTypesSupported, or null if it is not present.
      • requireGroupTypesSupported

        default @NonNull Set<Class<? extends GroupType>> requireGroupTypesSupported()
        Return groupTypesSupported, guaranteed to be non-null.
        Returns:
        Set<Class<? extends GroupType>> groupTypesSupported, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if groupTypesSupported is not present
      • getGroupCapabilitiesSupported

        @Nullable Set<Class<? extends GroupCapability>> getGroupCapabilitiesSupported()
        Return groupCapabilitiesSupported, or null if it is not present.
        Returns:
        Set<Class<? extends GroupCapability>> groupCapabilitiesSupported, or null if it is not present.
      • requireGroupCapabilitiesSupported

        default @NonNull Set<Class<? extends GroupCapability>> requireGroupCapabilitiesSupported()
        Return groupCapabilitiesSupported, guaranteed to be non-null.
        Returns:
        Set<Class<? extends GroupCapability>> groupCapabilitiesSupported, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if groupCapabilitiesSupported is not present
      • getMaxGroups

        @Nullable List<org.opendaylight.yangtools.yang.common.Uint32> getMaxGroups()
        Return maxGroups, or null if it is not present.
             
                 Maximum number of groups for each type
             
         
        Returns:
        List<Uint32> maxGroups, or null if it is not present.
      • requireMaxGroups

        default @NonNull List<org.opendaylight.yangtools.yang.common.Uint32> requireMaxGroups()
        Return maxGroups, guaranteed to be non-null.
             
                 Maximum number of groups for each type
             
         
        Returns:
        List<Uint32> maxGroups, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if maxGroups is not present
      • getActions

        @Nullable List<org.opendaylight.yangtools.yang.common.Uint32> getActions()
        Return actions, or null if it is not present.
             
                 Bitmap number OFPAT_* that are supported
             
         
        Returns:
        List<Uint32> actions, or null if it is not present.
      • requireActions

        default @NonNull List<org.opendaylight.yangtools.yang.common.Uint32> requireActions()
        Return actions, guaranteed to be non-null.
             
                 Bitmap number OFPAT_* that are supported
             
         
        Returns:
        List<Uint32> actions, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if actions is not present