public interface IEnvManagerConfig
The following configuration settings are persisted.
| Modifier and Type | Method and Description |
|---|---|
java.util.List<java.lang.String> |
getConfigElements()
Returns the value of a configuration setting containing the list of selected environment configuration elements
(modules/SoftEnv
macros/etc.).
|
java.lang.String |
getConnectionName()
Returns the value of the connection name configuration setting.
|
java.lang.String |
getManualConfigText()
Returns the value of a configuration setting containing manually-entered configuration commands.
|
boolean |
isEnvMgmtEnabled()
Returns the value of a configuration setting indicating whether environment management support is enabled for this project.
|
boolean |
isManualConfigEnabled()
Returns the value of a configuration setting indicating whether manually-entered configuration commands should be used.
|
void |
setConfigElements(java.util.List<java.lang.String> selectedModules)
Sets a configuration setting containing the list of selected environment configuration elements (environment modules/SoftEnv
macros/etc.).
|
void |
setConnectionName(java.lang.String connectionName)
Sets the connection name configuration setting.
|
void |
setEnvMgmtEnabled(boolean enabled)
Sets a configuration setting indicating whether environment management support is enabled.
|
void |
setManualConfig(boolean enabled)
Sets a configuration setting indicating whether manually-entered configuration commands should be used.
|
void |
setManualConfigText(java.lang.String manualConfigText)
Sets a configuration setting containing manually-entered configuration commands.
|
void setEnvMgmtEnabled(boolean enabled)
enabled - true to use a custom set of modules; false to use defaultsboolean isEnvMgmtEnabled()
nullvoid setManualConfig(boolean enabled)
enabled - true to use a custom set of modules; false to use defaultsboolean isManualConfigEnabled()
nullvoid setManualConfigText(java.lang.String manualConfigText)
Note that null is indistinguishable from the empty string: in both cases, getManualConfigText() will
return the empty string.
manualConfigText - java.lang.String getManualConfigText()
nullvoid setConfigElements(java.util.List<java.lang.String> selectedModules)
Note that null is indistinguishable from the empty string: in both cases, getConfigElements() will
return an empty list.
selectedModules - (may be null)java.util.List<java.lang.String> getConfigElements()
This may return an empty set but will never return null.
nullvoid setConnectionName(java.lang.String connectionName)
Note that null is indistinguishable from the empty string: in both cases, getConnectionName() will
return the empty string.
connectionName - (may be null)java.lang.String getConnectionName()
This may return the empty string but will never return null.
nullCopyright (c) 2011 IBM Corporation and others. All Rights Reserved.