public abstract class AbstractJsr88Deployer extends AbstractRemoteDeployer
| Constructor and Description |
|---|
AbstractJsr88Deployer(RemoteContainer container)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
deploy(Deployable deployable)
Deploy a
Deployable to the running container and make it available for requests. |
protected abstract String |
getDeploymentFactoryClassName() |
protected abstract javax.enterprise.deploy.spi.DeploymentManager |
getDeploymentManager(javax.enterprise.deploy.shared.factories.DeploymentFactoryManager dfm) |
protected RuntimeConfiguration |
getRuntimeConfiguration() |
void |
redeploy(Deployable deployable)
Redeploy a
Deployable already deployed to the running container. |
void |
start(Deployable deployable)
Starts a
Deployable that is already deployed in the running container but that is not
servicing requests. |
void |
stop(Deployable deployable)
Stop a
Deployable that is already deployed in the running container in order to
prevent it from servicing requests. |
void |
undeploy(Deployable deployable)
Undeploy a
Deployable from the running container. |
getTypedeploy, deploy, redeploy, start, stop, undeploygetLogger, setLoggerpublic AbstractJsr88Deployer(RemoteContainer container)
container - the remote containerpublic void deploy(Deployable deployable)
Deployable to the running container and make it available for requests.deploy in interface Deployerdeploy in class AbstractDeployerdeployable - the Deployable to deployDeployer.deploy(Deployable)public void undeploy(Deployable deployable)
Deployable from the running container. The service becomes unavailable for
requests.undeploy in interface Deployerundeploy in class AbstractDeployerdeployable - the Deployable to undeployDeployer.undeploy(Deployable)public void redeploy(Deployable deployable)
Redeploy a Deployable already deployed to the running container. The service becomes
available for requests.
Note that this method will be unsupported by the Deployers based on the
AbstractCopyingInstalledLocalDeployer.
redeploy in interface Deployerredeploy in class AbstractDeployerdeployable - the Deployable to redeployDeployer.redeploy(Deployable)public void start(Deployable deployable)
Deployable that is already deployed in the running container but that is not
servicing requests.start in interface Deployerstart in class AbstractDeployerdeployable - the Deployable to startDeployer.start(Deployable)public void stop(Deployable deployable)
Deployable that is already deployed in the running container in order to
prevent it from servicing requests.stop in interface Deployerstop in class AbstractDeployerdeployable - the Deployable to stopDeployer.stop(Deployable)protected abstract String getDeploymentFactoryClassName()
protected abstract javax.enterprise.deploy.spi.DeploymentManager getDeploymentManager(javax.enterprise.deploy.shared.factories.DeploymentFactoryManager dfm)
throws javax.enterprise.deploy.spi.exceptions.DeploymentManagerCreationException
dfm - JSR-88 deployment factory manager with the target deployer factory registered.javax.enterprise.deploy.spi.exceptions.DeploymentManagerCreationException - If deployment manager creation fails.protected RuntimeConfiguration getRuntimeConfiguration()
Copyright © 2004-2013 Codehaus. All Rights Reserved.