Interface StorageExecutableComponentDescription

    • Method Detail

      • getConfigurationDescription

        StorageConfigurationDescription getConfigurationDescription()
        Gets the configuration description for this executable component description without any inherited values.
        Returns:
        The description for all configuration values of this executable component description, that is, the name of the configuration entries, their type and whether they are mandatory.
        See Also:
        ExecutableComponentDescription.getConfigurationDescription()
      • getParameterTemplates

        Map<String,​StorageParameterTemplate> getParameterTemplates()
        Gets parameter templates that are defined for this executable component description and its child entities for storage.
        Returns:
        Templates for parameters (mapped from parameter template name to the corresponding parameter template) that may be added to child entities of this executable component. If no parameter templates are defined, an empty map will be returned.
      • setConfigurationDescription

        void setConfigurationDescription​(StorageConfigurationDescription description)
        Sets the configuration description for this executable component description. The configuration description has to be set as a whole; to add or modify single entries, retrieve the complete description from this executable component description, add or modify the entry and provide the complete description again to this method. Use null to remove it from this executable component description.
        Parameters:
        description - The description for all configuration values of this executable component description, that is, the name of the configuration entries, their type and whether they are mandatory. Use null to remove the configuration description.
      • setParameterTemplates

        void setParameterTemplates​(Collection<StorageParameterTemplate> parameterTemplates)
        Sets parameter templates that are defined for this executable component description and its child entities.

        When setting the parameter templates the whole collection has to be set, even in case only one parameter template has been modified. Use null for removing all parameter templates.

        Parameters:
        parameterTemplates - A collection containing all parameter templates that are defined for this executable component description and its child entities. Use null to remove all parameter templates.