Class AbstractRemoteDeployer
- java.lang.Object
-
- org.codehaus.cargo.util.log.LoggedObject
-
- org.codehaus.cargo.container.spi.deployer.AbstractDeployer
-
- org.codehaus.cargo.container.spi.deployer.AbstractRemoteDeployer
-
- Direct Known Subclasses:
AbstractJonasRemoteDeployer
,AbstractJsr88Deployer
,AbstractWildFlyRemoteDeployer
,JBoss4xRemoteDeployer
,JBoss5xRemoteDeployer
,JettyRemoteDeployer
,WebLogicWlstRemoteDeployer
public abstract class AbstractRemoteDeployer extends AbstractDeployer
Base deployer to deploy to containers without any reference to where the container is installed (be it on the same machine or on another one).
-
-
Constructor Summary
Constructors Constructor Description AbstractRemoteDeployer(RemoteContainer container)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected RemoteContainer
getContainer()
DeployerType
getType()
-
Methods inherited from class org.codehaus.cargo.container.spi.deployer.AbstractDeployer
deploy, deploy, deploy, redeploy, redeploy, redeploy, start, start, stop, stop, undeploy, undeploy
-
Methods inherited from class org.codehaus.cargo.util.log.LoggedObject
getLogger, setLogger
-
-
-
-
Constructor Detail
-
AbstractRemoteDeployer
public AbstractRemoteDeployer(RemoteContainer container)
- Parameters:
container
- the remote container into which to perform deployment operations
-
-
Method Detail
-
getContainer
protected RemoteContainer getContainer()
- Returns:
- the remote container into which to perform deployment operations
-
getType
public DeployerType getType()
- Returns:
- the deployer's type (local, remote, etc)
-
-