Interface NamedElement

  • All Known Subinterfaces:
    Parameter, Service

    public interface NamedElement
    An element having a name.

    This interface is not intended to be implemented by clients.

    • Method Detail

      • getName

        String getName()
        Returns the name of the element.
        Returns:
        the name of the element.
      • getPropertyNames

        Collection<String> getPropertyNames()
        Returns the list of property names associated with this element. Those are the properties defined in the com.sodius.mdw.server.service extension.
        Returns:
        the list of property names associated with this element.
        See Also:
        getPropertyValue(String)
      • getPropertyValue

        String getPropertyValue​(String name)
        Returns the value associated with the specified property name.
        Parameters:
        name - the name of a property
        Returns:
        the value associated with the specified property name, null if none.