Package org.wildfly.plugin.core
Class SimpleDeploymentDescription
- java.lang.Object
-
- org.wildfly.plugin.core.SimpleDeploymentDescription
-
- All Implemented Interfaces:
Comparable<SimpleDeploymentDescription>,DeploymentDescription
@Deprecated(forRemoval=true) public class SimpleDeploymentDescription extends Object implements DeploymentDescription, Comparable<SimpleDeploymentDescription>
Deprecated, for removal: This API element is subject to removal in a future version.moved to new https://github.com/wildfly/wildfly-plugin-tools projectA simple deployment description.- Author:
- James R. Perkins
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description SimpleDeploymentDescriptionaddServerGroup(String serverGroup)Deprecated, for removal: This API element is subject to removal in a future version.Adds a server group for the deployment description.SimpleDeploymentDescriptionaddServerGroups(String... serverGroups)Deprecated, for removal: This API element is subject to removal in a future version.Adds the server groups for the deployment description.SimpleDeploymentDescriptionaddServerGroups(Collection<String> serverGroups)Deprecated, for removal: This API element is subject to removal in a future version.Adds the server groups for the deployment description.intcompareTo(SimpleDeploymentDescription o)Deprecated, for removal: This API element is subject to removal in a future version.booleanequals(Object obj)Deprecated, for removal: This API element is subject to removal in a future version.StringgetName()Deprecated, for removal: This API element is subject to removal in a future version.Returns the name for this deployment.Set<String>getServerGroups()Deprecated, for removal: This API element is subject to removal in a future version.Returns the server groups for this deployment.inthashCode()Deprecated, for removal: This API element is subject to removal in a future version.static SimpleDeploymentDescriptionof(String name)Deprecated, for removal: This API element is subject to removal in a future version.Creates a simple deployment description with an empty set of server groups.static SimpleDeploymentDescriptionof(String name, Set<String> serverGroups)Deprecated, for removal: This API element is subject to removal in a future version.Creates a simple deployment description.StringtoString()Deprecated, for removal: This API element is subject to removal in a future version.
-
-
-
Method Detail
-
of
public static SimpleDeploymentDescription of(String name)
Deprecated, for removal: This API element is subject to removal in a future version.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)
Deprecated, for removal: This API element is subject to removal in a future version.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)
Deprecated, for removal: This API element is subject to removal in a future version.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)
Deprecated, for removal: This API element is subject to removal in a future version.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)
Deprecated, for removal: This API element is subject to removal in a future version.Adds the server groups for the deployment description.- Parameters:
serverGroups- the server groups to add- Returns:
- this deployment description
-
getServerGroups
public Set<String> getServerGroups()
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:DeploymentDescriptionReturns the server groups for this deployment.- Specified by:
getServerGroupsin interfaceDeploymentDescription- Returns:
- a set of server groups for this deployment
-
getName
public String getName()
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:DeploymentDescriptionReturns the name for this deployment.- Specified by:
getNamein interfaceDeploymentDescription- Returns:
- the name for this deployment
-
compareTo
public int compareTo(SimpleDeploymentDescription o)
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
compareToin interfaceComparable<SimpleDeploymentDescription>
-
hashCode
public int hashCode()
Deprecated, for removal: This API element is subject to removal in a future version.
-
equals
public boolean equals(Object obj)
Deprecated, for removal: This API element is subject to removal in a future version.
-
-