Interface ServiceProviderFeatureAttributes

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject
    All Known Subinterfaces:
    Feature

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

    This class represents the following YANG schema fragment defined in module neutron-extensions

     grouping service-provider-feature-attributes {
       leaf service-provider-feature {
         type identityref {
           base service-provider-feature-type-base;
         }
       }
       leaf configuration {
         type string;
       }
     }
     
    The schema path to identify an instance is neutron-extensions/service-provider-feature-attributes
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        Class<? extends ServiceProviderFeatureTypeBase> getServiceProviderFeature()
        Return serviceProviderFeature, or null if it is not present.
             
                 supported features by openstack service provider
             
         
        Returns:
        Class<? extends ServiceProviderFeatureTypeBase> serviceProviderFeature, or null if it is not present.
      • requireServiceProviderFeature

        default @NonNull Class<? extends ServiceProviderFeatureTypeBase> requireServiceProviderFeature()
        Return serviceProviderFeature, guaranteed to be non-null.
             
                 supported features by openstack service provider
             
         
        Returns:
        Class<? extends ServiceProviderFeatureTypeBase> serviceProviderFeature, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if serviceProviderFeature is not present
      • getConfiguration

        String getConfiguration()
        Return configuration, or null if it is not present.
             
                 The configuration of this feature
             
         
        Returns:
        String configuration, or null if it is not present.
      • requireConfiguration

        default @NonNull String requireConfiguration()
        Return configuration, guaranteed to be non-null.
             
                 The configuration of this feature
             
         
        Returns:
        String configuration, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if configuration is not present