Package org.apache.cxf.common.util.factory

Examples of org.apache.cxf.common.util.factory.PooledFactory


        return service.getName();
    }

    public Factory applyScope(Factory f, Exchange ex) {
        Service s = ex.get(Service.class);
        return new PooledFactory(f, getSessionScope(getServiceKey(s), ex.getSession()));
    }
View Full Code Here


public class ApplicationScopePolicy implements ScopePolicy {

    private final Pool pool = new CachingPool();

    public Factory applyScope(Factory f, Exchange ex) {
        return new PooledFactory(f, pool);
    }
View Full Code Here

TOP

Related Classes of org.apache.cxf.common.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.