Package org.apache.tomcat.deploy

Examples of org.apache.tomcat.deploy.ContextResource


     * none have been defined, a zero-length array is returned.
     */
    public ContextResource[] findResources() {

  synchronized (resources) {
      ContextResource results[] = new ContextResource[resources.size()];
      Enumeration elements = resources.elements();
      for (int i = 0; i < results.length; i++)
    results[i] = (ContextResource) elements.nextElement();
      return (results);
  }
View Full Code Here

TOP

Related Classes of org.apache.tomcat.deploy.ContextResource

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.