| java.lang.Object org.ow2.easybeans.deployer.AbsDeployer org.ow2.easybeans.deployer.AbsWebContainerDeployer
All known Subclasses: org.ow2.easybeans.deployer.JettyDeployer, org.ow2.easybeans.deployer.TomcatDeployer,
AbsWebContainerDeployer | abstract public class AbsWebContainerDeployer extends AbsDeployer (Code) | | This class manage the deployment of EAR for web container. It extracts EJB3
and send them to EasyBeans while the War are given to the web container.
author: Florent Benoit |
Method Summary | |
protected void | deployEAR(EARDeployable earDeployable) Deploy an EAR (called by the deploy method). | abstract protected void | deployWARs(EARDeployable earDeployable, URL earURL, ClassLoader earClassLoader, ClassLoader parentClassLoader) Deploy the WAR files present in the given EAR. | public void | undeploy(IDeployable deployable) Undeploy the given deployable. | protected void | undeployEAR(EARDeployable tmpEARDeployable) Undeploy an EAR (called by the undeploy method). | abstract protected void | undeployWAR(WARDeployable warDeployable) Undeploy an given WAR (called by the undeploy method). |
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. |
deployWARs | abstract protected void deployWARs(EARDeployable earDeployable, URL earURL, ClassLoader earClassLoader, ClassLoader parentClassLoader) throws DeployerException(Code) | | Deploy the WAR files present in the given EAR.
Parameters: earDeployable - the EAR containing the WARs Parameters: earURL - the EAR URL Parameters: earClassLoader - the EAR classloader Parameters: parentClassLoader - the parent classloader (EJB) to use throws: DeployerException - if the wars are not deployed. |
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. |
undeployEAR | protected void undeployEAR(EARDeployable tmpEARDeployable) throws DeployerException(Code) | | Undeploy an EAR (called by the undeploy method).
Parameters: tmpEARDeployable - a given EAR deployable throws: DeployerException - if the undeployment is not done. |
undeployWAR | abstract protected void undeployWAR(WARDeployable warDeployable) throws DeployerException(Code) | | Undeploy an given WAR (called by the undeploy method).
Parameters: warDeployable - a given WAR deployable throws: DeployerException - if the undeployment is not done. |
Fields inherited from org.ow2.easybeans.deployer.AbsDeployer | final public static String DEFAULT_FOLDER(Code)(Java Doc)
|
|
|