Class ServerGroupDeploymentPlan
- java.lang.Object
-
- org.jboss.as.controller.client.helpers.domain.ServerGroupDeploymentPlan
-
- All Implemented Interfaces:
Serializable
public class ServerGroupDeploymentPlan extends Object implements Serializable
Indicates how the actions in aDeploymentSetPlanare to be applied to a particular server group.- Author:
- Brian Stansberry
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ServerGroupDeploymentPlan(String serverGroupName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ServerGroupDeploymentPlancreateAllowFailurePercentage(int serverFailurePercentage)ServerGroupDeploymentPlancreateAllowFailures(int serverFailures)ServerGroupDeploymentPlancreateRollback()ServerGroupDeploymentPlancreateRollingToServers()booleanequals(Object obj)intgetMaxServerFailurePercentage()intgetMaxServerFailures()StringgetServerGroupName()inthashCode()booleanisRollback()booleanisRollingToServers()StringtoString()
-
-
-
Constructor Detail
-
ServerGroupDeploymentPlan
public ServerGroupDeploymentPlan(String serverGroupName)
-
-
Method Detail
-
getServerGroupName
public String getServerGroupName()
-
isRollback
public boolean isRollback()
-
isRollingToServers
public boolean isRollingToServers()
-
getMaxServerFailures
public int getMaxServerFailures()
-
getMaxServerFailurePercentage
public int getMaxServerFailurePercentage()
-
createRollback
public ServerGroupDeploymentPlan createRollback()
-
createRollingToServers
public ServerGroupDeploymentPlan createRollingToServers()
-
createAllowFailures
public ServerGroupDeploymentPlan createAllowFailures(int serverFailures)
-
createAllowFailurePercentage
public ServerGroupDeploymentPlan createAllowFailurePercentage(int serverFailurePercentage)
-
-