Package org.wildfly.plugin.tools
Class SimpleDeploymentDescription
- java.lang.Object
-
- org.wildfly.plugin.tools.SimpleDeploymentDescription
-
- All Implemented Interfaces:
Comparable<SimpleDeploymentDescription>
,DeploymentDescription
public class SimpleDeploymentDescription extends Object implements DeploymentDescription, Comparable<SimpleDeploymentDescription>
A simple deployment description.- Author:
- James R. Perkins
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description SimpleDeploymentDescription
addServerGroup(String serverGroup)
Adds a server group for the deployment description.SimpleDeploymentDescription
addServerGroups(String... serverGroups)
Adds the server groups for the deployment description.SimpleDeploymentDescription
addServerGroups(Collection<String> serverGroups)
Adds the server groups for the deployment description.int
compareTo(SimpleDeploymentDescription o)
boolean
equals(Object obj)
String
getName()
Returns the name for this deployment.Set<String>
getServerGroups()
Returns the server groups for this deployment.int
hashCode()
static SimpleDeploymentDescription
of(String name)
Creates a simple deployment description with an empty set of server groups.static SimpleDeploymentDescription
of(String name, Set<String> serverGroups)
Creates a simple deployment description.String
toString()
-
-
-
Method Detail
-
of
public static SimpleDeploymentDescription of(String name)
Creates a simple deployment description with an empty set of server groups.- Parameters:
name
- the name for the deployment- Returns:
- the deployment description
-
of
public static SimpleDeploymentDescription of(String name, Set<String> serverGroups)
Creates a simple deployment description.- Parameters:
name
- the name for the deploymentserverGroups
- the server groups- Returns:
- the deployment description
-
addServerGroup
public SimpleDeploymentDescription addServerGroup(String serverGroup)
Adds a server group for the deployment description.- Parameters:
serverGroup
- the server group to add- Returns:
- this deployment description
-
addServerGroups
public SimpleDeploymentDescription addServerGroups(String... serverGroups)
Adds the server groups for the deployment description.- Parameters:
serverGroups
- the server groups to add- Returns:
- this deployment description
-
addServerGroups
public SimpleDeploymentDescription addServerGroups(Collection<String> serverGroups)
Adds the server groups for the deployment description.- Parameters:
serverGroups
- the server groups to add- Returns:
- this deployment description
-
getServerGroups
public Set<String> getServerGroups()
Description copied from interface:DeploymentDescription
Returns the server groups for this deployment.- Specified by:
getServerGroups
in interfaceDeploymentDescription
- Returns:
- a set of server groups for this deployment
-
getName
public String getName()
Description copied from interface:DeploymentDescription
Returns the name for this deployment.- Specified by:
getName
in interfaceDeploymentDescription
- Returns:
- the name for this deployment
-
compareTo
public int compareTo(SimpleDeploymentDescription o)
- Specified by:
compareTo
in interfaceComparable<SimpleDeploymentDescription>
-
-