Package org.codehaus.xfire.util.factory

Examples of org.codehaus.xfire.util.factory.SimplePool


  }
  public String toString(){
    return "session scope";
  }
  private static Pool getSessionScope(final Object key, final Session session){
    return new SimplePool(){
      public Object get() {
        return session.get(key);
      }
      public void set(Object val) {
        session.put(key, val);
View Full Code Here

TOP

Related Classes of org.codehaus.xfire.util.factory.SimplePool

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.