public interface IEnvManagerConfig
The following configuration settings are persisted.
Modifier and Type | Method and Description |
---|---|
List<String> |
getConfigElements()
Returns the value of a configuration setting containing the list of selected environment configuration elements
(modules/SoftEnv
macros/etc.).
|
String |
getConnectionName()
Returns the value of the connection name configuration setting.
|
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(List<String> selectedModules)
Sets a configuration setting containing the list of selected environment configuration elements (environment modules/SoftEnv
macros/etc.).
|
void |
setConnectionName(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(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()
null
void setManualConfig(boolean enabled)
enabled
- true
to use a custom set of modules; false
to use defaultsboolean isManualConfigEnabled()
null
void setManualConfigText(String manualConfigText)
Note that null
is indistinguishable from the empty string: in both cases, getManualConfigText()
will
return the empty string.
manualConfigText
- String getManualConfigText()
null
void setConfigElements(List<String> selectedModules)
Note that null
is indistinguishable from the empty string: in both cases, getConfigElements()
will
return an empty list.
selectedModules
- (may be null
)List<String> getConfigElements()
This may return an empty set but will never return null
.
null
void setConnectionName(String connectionName)
Note that null
is indistinguishable from the empty string: in both cases, getConnectionName()
will
return the empty string.
connectionName
- (may be null
)String getConnectionName()
This may return the empty string but will never return null
.
null
Copyright (c) 2011 IBM Corporation and others. All Rights Reserved.