Package com.sun.enterprise.web.deploy

Examples of com.sun.enterprise.web.deploy.ContextEnvironmentDecorator


                                                 WebBundleDescriptor wmd) {
                                                       
        Set set = wmd.getContextParametersSet();
        Iterator iterator = set.iterator();
         
        ContextEnvironmentDecorator decorator;
        EnvironmentProperty envRef;
        while (iterator.hasNext()){
            envRef = (EnvironmentProperty)iterator.next();
            decorator = new ContextEnvironmentDecorator(envRef);
            webModule.addEnvironment(decorator);
        }
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.web.deploy.ContextEnvironmentDecorator

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.