Class AbstractJonasRemoteDeployer.RemoteDeployerConfig
- java.lang.Object
-
- org.codehaus.cargo.container.jonas.internal.AbstractJonasRemoteDeployer.RemoteDeployerConfig
-
- Enclosing class:
- AbstractJonasRemoteDeployer
protected class AbstractJonasRemoteDeployer.RemoteDeployerConfig extends Object
This class represents the Remote Deployer Configuration.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedRemoteDeployerConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetClusterName()StringgetDeployableIdentifier()StringgetDomainName()StringgetServerName()voidsetClusterName(String clusterName)voidsetDeployableIdentifier(String deployableIdentifier)voidsetDomainName(String domainName)voidsetServerName(String serverName)
-
-
-
Method Detail
-
getDeployableIdentifier
public String getDeployableIdentifier()
- Returns:
- the Deployable's identifier.
-
setDeployableIdentifier
public void setDeployableIdentifier(String deployableIdentifier)
- Parameters:
deployableIdentifier- Deployable's identifier.
-
getServerName
public String getServerName()
- Returns:
- the server name.
-
setServerName
public void setServerName(String serverName)
- Parameters:
serverName- the server name.
-
getDomainName
public String getDomainName()
- Returns:
- the domain name.
-
setDomainName
public void setDomainName(String domainName)
- Parameters:
domainName- the domain name.
-
getClusterName
public String getClusterName()
- Returns:
- the cluster name if deployment is to be done on a domain.
-
setClusterName
public void setClusterName(String clusterName)
- Parameters:
clusterName- the cluster name if deployment is to be done on a domain, null otherwise.
-
-