| java.lang.Object org.ow2.easybeans.deployer.AbsDeployer org.ow2.easybeans.deployer.EasyBeansDeployer
EasyBeansDeployer | public class EasyBeansDeployer extends AbsDeployer implements IDeployer(Code) | | Implementation of the Deployer for EasyBeans in standalone mode (or default
mode). It can deploy EJB-JAR or EAR deployable
author: Florent Benoit |
Method Summary | |
public void | deploy(IDeployable deployable) Deploy a deployable. | protected void | deployEAR(EARDeployable earDeployable) Deploy an EAR (called by the deploy method). | public void | undeploy(IDeployable deployable) Undeploy the given deployable. |
deploy | public void deploy(IDeployable deployable) throws DeployerException(Code) | | Deploy a deployable. It can be an EJB jar, EAR, WAR, etc.
Parameters: deployable - a given deployable throws: DeployerException - if the deployment is not done. |
deployEAR | protected void deployEAR(EARDeployable earDeployable) throws DeployerException(Code) | | Deploy an EAR (called by the deploy method).
Parameters: earDeployable - a given EAR deployable throws: DeployerException - if the deployment is not done. |
undeploy | public void undeploy(IDeployable deployable) throws DeployerException(Code) | | Undeploy the given deployable. It can be an EJB jar, EAR, WAR, etc.
Parameters: deployable - a given deployable to undeploy throws: DeployerException - if the undeploy operation fails. |
Fields inherited from org.ow2.easybeans.deployer.AbsDeployer | final public static String DEFAULT_FOLDER(Code)(Java Doc)
|
|
|