Package org.apache.tomcat.deploy

Examples of org.apache.tomcat.deploy.ContextEnvironment


     * is returned.
     */
    public ContextEnvironment[] findEnvironments() {

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

TOP

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

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.