Examples of JspConfigDescriptorImpl


Examples of org.glassfish.web.deployment.descriptor.JspConfigDescriptorImpl

        }
    }

    //This method checks for url-patterns appearing in jsp-config element in an web-app.
    private void checkJspGroupProperties(WebBundleDescriptor descriptor, Result result, ComponentNameConstructor compName){
        JspConfigDescriptorImpl jspC=((WebBundleDescriptorImpl)descriptor).getJspConfigDescriptor();
        if (jspC==null) return;
        for (JspPropertyGroupDescriptor desc : jspC.getJspPropertyGroups()) {
            for (String urlPattern : desc.getUrlPatterns()) {
                checkUrlPatternAndSetResult(urlPattern, descriptor, result,
                    compName);
            }
        }
View Full Code Here

Examples of org.glassfish.web.deployment.descriptor.JspConfigDescriptorImpl

     * @return the descriptor instance to associate with this XMLNode
     */
    @Override
    public JspConfigDescriptorImpl getDescriptor() {
        if (descriptor==null) {
            descriptor = new JspConfigDescriptorImpl();
        }
        return descriptor;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.