Package net.sourceforge.javautil.web.server.descriptor.impl

Examples of net.sourceforge.javautil.web.server.descriptor.impl.WebXml


   * Initialize the web.xml
   */
  protected void initializeWebXml () {
    if (this.webXml == null) {
      URL webXmlURL = this.resolver.getResource("WEB-INF/web.xml");
      this.webXml = webXmlURL == null ? new WebXml() : WebXml.getInstance(webXmlURL);
    }
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.javautil.web.server.descriptor.impl.WebXml

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.