Package org.apache.hivemind.impl.servicemodel

Examples of org.apache.hivemind.impl.servicemodel.SingletonServiceModelFactory


     */
    private List getDefaultServiceModels()
    {
        List result = new ArrayList();
        result.add(new ServiceModelContribution(ServiceModel.PRIMITIVE, new PrimitiveServiceModelFactory()));
        result.add(new ServiceModelContribution(ServiceModel.SINGLETON, new SingletonServiceModelFactory()));
        result.add(new ServiceModelContribution(ServiceModel.POOLED, new PooledServiceModelFactory()));
        result.add(new ServiceModelContribution(ServiceModel.THREADED, new ThreadedServiceModelFactory()));
        return result;
    }
View Full Code Here

TOP

Related Classes of org.apache.hivemind.impl.servicemodel.SingletonServiceModelFactory

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.