Package org.apache.geronimo.j2ee.jsr88

Examples of org.apache.geronimo.j2ee.jsr88.EARConfiguration


* @version $Rev: 508724 $ $Date: 2007-02-17 16:01:26 +0800 (Sat, 17 Feb 2007) $
*/
public class ClientConfigurer implements ModuleConfigurer {
    public DeploymentConfiguration createConfiguration(DeployableObject deployable) {
        if (ModuleType.EAR.equals(deployable.getType())) {
            return new EARConfiguration(deployable);
        } else {
            return null;
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.j2ee.jsr88.EARConfiguration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.