Package org.codehaus.xfire.util.factory

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


public class ApplicationScopePolicy
    implements ScopePolicy
{
    public Factory applyScope(Factory f, MessageContext ctxt)
    {
        return new PooledFactory(f, pool);
    }
View Full Code Here


   */
  protected Object getServiceKey(Service service){
    return "service." + service.getSimpleName();
  }
  public Factory applyScope(Factory f, MessageContext ctxt) {
    return new PooledFactory(f,
        getSessionScope(getServiceKey(ctxt.getService()), ctxt.getSession()));
  }
View Full Code Here

TOP

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

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.