FileDocCategorySizeDatePackage
PEDeploymentFactoryImpl.javaAPI DocGlassfish v2 API3315Fri May 04 22:34:32 BST 2007com.sun.enterprise.deployment.backend

PEDeploymentFactoryImpl

public class PEDeploymentFactoryImpl extends Object implements com.sun.enterprise.deployment.interfaces.DeploymentFactory
Implementation of the pluggabilty layers factory for PE.
author
Jerome Dochez To change the template for this generated type comment go to Window>Preferences>Java>Code Generation>Code and Comments

Fields Summary
Constructors Summary
Methods Summary
public com.sun.enterprise.deployment.interfaces.ClientJarMakergetClientJarMaker(java.util.Properties props)
hook for creating appclient container jar files.

param
props is a properties collection to pass implementation dependent parameters from the the requester and the implementation
return
an implementation of the @see ClientJarMaker interface

        if (props != null) {
            boolean createSimpleClient = 
                Boolean.parseBoolean(props.getProperty(
                    DeploymentImplConstants.USE_MODULE_CLIENT_JAR_MAKER));
            if (createSimpleClient) {
                return new ModuleClientJarMaker(props);
            } else {
                return new ApplicationClientJarMaker(props);
            }
        }
        return new ClientJarMakerImpl(props);