Examples of PrimitiveServiceModelFactory


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

     * Returns default service Models as instances of {@link ServiceModelContribution}.
     */
    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
Copyright © 2018 www.massapi.com. 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.