Class AbstractWildFlyRemoteDeployer
- java.lang.Object
-
- org.codehaus.cargo.util.log.LoggedObject
-
- org.codehaus.cargo.container.spi.deployer.AbstractDeployer
-
- org.codehaus.cargo.container.spi.deployer.AbstractRemoteDeployer
-
- org.codehaus.cargo.container.wildfly.internal.AbstractWildFlyRemoteDeployer
-
- Direct Known Subclasses:
WildFly10xRemoteDeployer,WildFly11xRemoteDeployer,WildFly12xRemoteDeployer,WildFly13xRemoteDeployer,WildFly14xRemoteDeployer,WildFly15xRemoteDeployer,WildFly16xRemoteDeployer,WildFly17xRemoteDeployer,WildFly18xRemoteDeployer,WildFly19xRemoteDeployer,WildFly20xRemoteDeployer,WildFly21xRemoteDeployer,WildFly22xRemoteDeployer,WildFly23xRemoteDeployer,WildFly24xRemoteDeployer,WildFly25xRemoteDeployer,WildFly26xRemoteDeployer,WildFly27xRemoteDeployer,WildFly28xRemoteDeployer,WildFly29xRemoteDeployer,WildFly30xRemoteDeployer,WildFly31xRemoteDeployer,WildFly32xRemoteDeployer,WildFly33xRemoteDeployer,WildFly34xRemoteDeployer,WildFly35xRemoteDeployer,WildFly36xRemoteDeployer,WildFly37xRemoteDeployer,WildFly38xRemoteDeployer,WildFly8xRemoteDeployer,WildFly9xRemoteDeployer
public abstract class AbstractWildFlyRemoteDeployer extends AbstractRemoteDeployer
Remote deployer that uses the remote API to deploy to WildFly.
-
-
Constructor Summary
Constructors Constructor Description AbstractWildFlyRemoteDeployer(RemoteContainer container)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddeploy(Deployable deployable)Deploy aDeployableto the running container and make it available for requests.voidundeploy(Deployable deployable)Undeploy aDeployablefrom the running container.-
Methods inherited from class org.codehaus.cargo.container.spi.deployer.AbstractRemoteDeployer
getContainer, getType
-
Methods inherited from class org.codehaus.cargo.container.spi.deployer.AbstractDeployer
deploy, deploy, redeploy, redeploy, redeploy, start, start, stop, stop, undeploy
-
Methods inherited from class org.codehaus.cargo.util.log.LoggedObject
getLogger, setLogger
-
-
-
-
Constructor Detail
-
AbstractWildFlyRemoteDeployer
public AbstractWildFlyRemoteDeployer(RemoteContainer container)
- Parameters:
container- the container containing the configuration to use to find the deployer properties such as url, user name and password to use to connect to the deployer
-
-
Method Detail
-
deploy
public void deploy(Deployable deployable)
Deploy aDeployableto the running container and make it available for requests.- Specified by:
deployin interfaceDeployer- Overrides:
deployin classAbstractDeployer- Parameters:
deployable- theDeployableto deploy
-
undeploy
public void undeploy(Deployable deployable)
Undeploy aDeployablefrom the running container. The service becomes unavailable for requests.- Specified by:
undeployin interfaceDeployer- Overrides:
undeployin classAbstractDeployer- Parameters:
deployable- theDeployableto undeploy
-
-