Interface ExtensionAttributes

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

    public interface ExtensionAttributes
    extends org.opendaylight.yangtools.yang.binding.DataObject

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

     grouping extension-attributes {
       leaf name {
         type string;
       }
       leaf alias {
         type string;
       }
       leaf configuration {
         type string;
       }
     }
     
    The schema path to identify an instance is neutron-extensions/extension-attributes
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        String getName()
        The name of the extension
        Returns:
        java.lang.String name, or null if not present
      • getAlias

        String getAlias()
        The alias for the extension
        Returns:
        java.lang.String alias, or null if not present
      • getConfiguration

        String getConfiguration()
        The configuration of this extension
        Returns:
        java.lang.String configuration, or null if not present