Package org.apache.tomcat.deploy

Examples of org.apache.tomcat.deploy.ContextEjb


     * If there are none, a zero-length array is returned.
     */
    public ContextEjb[] findEjbs() {

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

TOP

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

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.