Package org.apache.geronimo.ews.ws4j2ee.utils.packager.load

Examples of org.apache.geronimo.ews.ws4j2ee.utils.packager.load.PackageModule


        Ws4J2ee ws4j2ee = new Ws4J2ee(deployContext,
                null);
        ws4j2ee.generate();
        log.info("ews code generation done.");

        PackageModule packageModule = deployContext.getModule();

        if (packageModule.getEjbJarfile() != null) {
            this.hasEJB = true;

            System.out.println("the web service is based on a ejb.");
            //log.info("the web service is based on a ejb.");
        } else if (packageModule.getWebddfile() != null) {
            this.hasEJB = false;

            System.out.println("the web service is based on a java class.");
            //log.info("the web service is based on a java class.");
        } else {
View Full Code Here

TOP

Related Classes of org.apache.geronimo.ews.ws4j2ee.utils.packager.load.PackageModule

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.