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;
       }
       leaf-list actions {
         type uint32;
         max-elements 4;
       }
     }
     
    The schema path to identify an instance is opendaylight-group-types/group-features
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • 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 List<Class<? extends GroupType>> getGroupTypesSupported()
        Return groupTypesSupported, or null if it is not present.
        Returns:
        java.util.List groupTypesSupported, or null if it is not present.
      • getGroupCapabilitiesSupported

        @Nullable List<Class<? extends GroupCapability>> getGroupCapabilitiesSupported()
        Return groupCapabilitiesSupported, or null if it is not present.
        Returns:
        java.util.List groupCapabilitiesSupported, or null if it 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:
        java.util.List maxGroups, or null if it 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:
        java.util.List actions, or null if it is not present.