public interface ChangeableActivityConfiguration extends ChangeableConfiguration, ActivityConfiguration
ChangeableConfiguration and an
ActivityConfiguration and allows to change the attributes of the
ActivityConfiguration, that is whether a configuration value
stems from an input parameter or the corresponding process configuration.Configuration.ConfigurationIDs| Modifier and Type | Field and Description |
|---|---|
static long |
serialVersionUID
Generated ID for serialisation.
|
| Modifier and Type | Method and Description |
|---|---|
void |
remove(java.lang.String entryName)
Removes the value for the entry with the designated name from this
configuration.
|
void |
setFromInputParameter(java.lang.String entryName,
java.lang.String inputParameterName)
Sets the name of the input parameter, the configuration value for the
designated entry is taken from at runtime.
|
void |
setFromProcessConfiguration(java.lang.String entryName,
java.lang.String configurationEntry)
Sets the name of the entry of the process configuration, the value for this
configuration and the designated entry provided from at runtime.
|
setBoolean, setDate, setFloat, setInteger, setString, setUDT, setURIfromInputParameter, fromProcessConfiguration, getAllEntriesgetBoolean, getConfigurationID, getDate, getFloat, getInteger, getString, getUDT, getURI, isFixedstatic final long serialVersionUID
void setFromInputParameter(java.lang.String entryName,
java.lang.String inputParameterName)
null.entryName - The name of the entry for which to set the name of the
input parameter that provides the configuration value at runtime.
This must not be null.inputParameterName - The name of the input parameter, the designated
configuration value is retrieved of. This must not be
null.void setFromProcessConfiguration(java.lang.String entryName,
java.lang.String configurationEntry)
null.entryName - The name of the entry for which to set the entry name of
the process configuration that provides the configuration value at
runtime. This must not be null.configurationEntry - The name of the entry of the process
configuration, the designated configuration value is retrieved of.
This must not be null.void remove(java.lang.String entryName)
remove in interface ChangeableConfigurationentryName - The name of the configuration entry to remove from this
configuration. This must neither be null nor the empty string.