public DeploymentOperationBuilder createDeploymentOperation(String name) {
return new DeploymentOperation.DeploymentOperationBuilder(this, name);
}
public DeploymentOperationBuilder createUndeploymentOperation(String name) {
DeploymentOperationBuilder builder = new DeploymentOperation.DeploymentOperationBuilder(this, name);
builder.setUndeploymentOperation();
return builder;
}