Class WebLogicWlstRemoteDeployer
- 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.weblogic.WebLogicWlstRemoteDeployer
-
public class WebLogicWlstRemoteDeployer extends AbstractRemoteDeployer
Static deployer that manages deployment configuration calling WLST online script.
-
-
Constructor Summary
Constructors Constructor Description WebLogicWlstRemoteDeployer(WebLogicRemoteScriptingContainer container)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
deploy(Deployable deployable)
Deploy aDeployable
to the running container and make it available for requests.void
undeploy(Deployable deployable)
Undeploy aDeployable
from 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
-
WebLogicWlstRemoteDeployer
public WebLogicWlstRemoteDeployer(WebLogicRemoteScriptingContainer container)
- See Also:
AbstractRemoteDeployer(RemoteContainer)
-
-
Method Detail
-
deploy
public void deploy(Deployable deployable)
Deploy aDeployable
to the running container and make it available for requests. deploys files by sending WLST script to WebLogic server.- Specified by:
deploy
in interfaceDeployer
- Overrides:
deploy
in classAbstractDeployer
- Parameters:
deployable
- theDeployable
to deploy- See Also:
AbstractDeployer.deploy(org.codehaus.cargo.container.deployable.Deployable)
-
undeploy
public void undeploy(Deployable deployable)
Undeploy aDeployable
from the running container. The service becomes unavailable for requests. undeploys files by sending WLST script to WebLogic server.- Specified by:
undeploy
in interfaceDeployer
- Overrides:
undeploy
in classAbstractDeployer
- Parameters:
deployable
- theDeployable
to undeploy- See Also:
AbstractDeployer.undeploy(org.codehaus.cargo.container.deployable.Deployable)
-
-