Interface Configurable

All Known Subinterfaces:
WorkflowOperationDefinition
All Known Implementing Classes:
WorkflowOperationDefinitionImpl, WorkflowOperationInstance

public interface Configurable
A configurable entity.
  • Method Details

    • getConfiguration

      String getConfiguration(String key)
      Returns the value of property name or null if no such property has been set.
      Parameters:
      key - the configuration key
      Returns:
      the configuration value
    • setConfiguration

      void setConfiguration(String key, String value)
      Sets the configuration with name key to value value, or adds it if it doesn't already exist.
      Parameters:
      key - the configuration key
      value - the configuration value
    • getConfigurationKeys

      Set<String> getConfigurationKeys()
      Gets the configuration keys that are currently set for this configurable entity.
      Returns:
      the configuration keys
    • removeConfiguration

      void removeConfiguration(String key)
      Removes the key configuration.
      Parameters:
      key - the configuration key