Class OSGiDeployer
- java.lang.Object
-
- org.glassfish.extras.osgicontainer.OSGiDeployer
-
- All Implemented Interfaces:
Deployer<OSGiContainer,OSGiDeployedBundle>
@Service public class OSGiDeployer extends Object implements Deployer<OSGiContainer,OSGiDeployedBundle>
OSGi deployer, takes care of loading and cleaning modules from the OSGi runtime.- Author:
- Jerome Dochez, Sanjeeb Sahoo
-
-
Constructor Summary
Constructors Constructor Description OSGiDeployer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclean(DeploymentContext context)Clean any files and artifacts that were created during the execution of the prepare method.MetaDatagetMetaData()Returns the meta data associated with this DeployerOSGiDeployedBundleload(OSGiContainer container, DeploymentContext context)Loads a previously prepared application in its execution environment and return a ContractProvider instance that will identify this environment in future communications with the application's container runtime.<V> VloadMetaData(Class<V> type, DeploymentContext context)Loads the meta date associated with the application.booleanprepare(DeploymentContext context)Prepares the application bits for running in the application server.voidunload(OSGiDeployedBundle appContainer, DeploymentContext context)Unload or stop a previously running application identified with the ContractProvider instance.
-
-
-
Method Detail
-
load
public OSGiDeployedBundle load(OSGiContainer container, DeploymentContext context)
Description copied from interface:DeployerLoads a previously prepared application in its execution environment and return a ContractProvider instance that will identify this environment in future communications with the application's container runtime.- Specified by:
loadin interfaceDeployer<OSGiContainer,OSGiDeployedBundle>- Parameters:
container- in which the application will residecontext- of the deployment- Returns:
- an ApplicationContainer instance identifying the running application
-
unload
public void unload(OSGiDeployedBundle appContainer, DeploymentContext context)
Description copied from interface:DeployerUnload or stop a previously running application identified with the ContractProvider instance. The container will be stop upon return from this method.- Specified by:
unloadin interfaceDeployer<OSGiContainer,OSGiDeployedBundle>- Parameters:
appContainer- instance to be stoppedcontext- of the undeployment
-
clean
public void clean(DeploymentContext context)
Description copied from interface:DeployerClean any files and artifacts that were created during the execution of the prepare method.- Specified by:
cleanin interfaceDeployer<OSGiContainer,OSGiDeployedBundle>- Parameters:
context- deployment context
-
getMetaData
public MetaData getMetaData()
Description copied from interface:DeployerReturns the meta data associated with this Deployer- Specified by:
getMetaDatain interfaceDeployer<OSGiContainer,OSGiDeployedBundle>- Returns:
- the meta data for this Deployer
-
loadMetaData
public <V> V loadMetaData(Class<V> type, DeploymentContext context)
Description copied from interface:DeployerLoads the meta date associated with the application.- Specified by:
loadMetaDatain interfaceDeployer<OSGiContainer,OSGiDeployedBundle>- Parameters:
type- type of meta-data that this deployer has declared providing.- Returns:
- the meta-data of type V
-
prepare
public boolean prepare(DeploymentContext context)
Description copied from interface:DeployerPrepares the application bits for running in the application server. For certain cases, this is generating non portable artifacts and other application specific tasks. Failure to prepare should throw an exception which will cause the overall deployment to fail.- Specified by:
preparein interfaceDeployer<OSGiContainer,OSGiDeployedBundle>- Parameters:
context- of the deployment- Returns:
- true if the prepare phase executed successfully
-
-