Class Control
- java.lang.Object
-
- com.xebialabs.deployit.engine.api.dto.Control
-
public class Control extends java.lang.Object
The parameter object of a control task action.
-
-
Constructor Summary
Constructors Constructor Description Control(com.xebialabs.deployit.plugin.api.udm.ConfigurationItem configurationItem, java.lang.String controlName)
Control(com.xebialabs.deployit.plugin.api.udm.ConfigurationItem configurationItem, java.lang.String controlName, com.xebialabs.deployit.plugin.api.udm.Parameters parameters)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.xebialabs.deployit.plugin.api.udm.ConfigurationItem
getConfigurationItem()
java.lang.String
getControlName()
com.xebialabs.deployit.plugin.api.udm.Parameters
getParameters()
-
-
-
Constructor Detail
-
Control
public Control(com.xebialabs.deployit.plugin.api.udm.ConfigurationItem configurationItem, java.lang.String controlName)
-
Control
public Control(com.xebialabs.deployit.plugin.api.udm.ConfigurationItem configurationItem, java.lang.String controlName, com.xebialabs.deployit.plugin.api.udm.Parameters parameters)
- Parameters:
configurationItem
- TheConfigurationItem
that will execute the control task.controlName
- The name of the control task.parameters
- The CI that represents theParameters
used to execute the control task.
-
-
Method Detail
-
getConfigurationItem
public com.xebialabs.deployit.plugin.api.udm.ConfigurationItem getConfigurationItem()
- Returns:
- The
ConfigurationItem
that will execute the control task.
-
getControlName
public java.lang.String getControlName()
- Returns:
- The name of the control task.
-
getParameters
public com.xebialabs.deployit.plugin.api.udm.Parameters getParameters()
- Returns:
- The
Parameters
configuration item used to execute the control task.
-
-