Package com.btmatthews.atlas.jcr.impl

Examples of com.btmatthews.atlas.jcr.impl.PooledSessionFactory


    @Bean(destroyMethod = "shutdown")
    @Autowired
    public SessionFactory sessionFactory(final KeyedPoolableObjectFactory<String, Session> objectFactory) {
        if (poolConfiguration == null) {
            return new PooledSessionFactory(objectFactory);
        } else {
            return new PooledSessionFactory(objectFactory, poolConfiguration);
        }
    }
View Full Code Here

TOP

Related Classes of com.btmatthews.atlas.jcr.impl.PooledSessionFactory

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.