Package org.apache.geronimo.xbeans.geronimo.web

Examples of org.apache.geronimo.xbeans.geronimo.web.GerContainerConfigType


            // Process the Tomcat container-config elements
            if (tomcatWebApp != null && tomcatWebApp.sizeOfContainerConfigArray() > 0) {
                Map values = new HashMap();
                GerContainerConfigType[] configs = tomcatWebApp.getContainerConfigArray();
                for (int i = 0; i < configs.length; i++) {
                    GerContainerConfigType config = configs[i];
                    if(config.getContainer().intValue() != GerWebContainerType.INT_TOMCAT) {
                        continue;
                    }
                    GerConfigParamType[] params = config.getConfigParamArray();
                    for (int j = 0; j < params.length; j++) {
                        GerConfigParamType param = params[j];
                        values.put(param.getName(), param.getStringValue());
                    }
                }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.xbeans.geronimo.web.GerContainerConfigType

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.