Coverage Report - org.mule.config.pool.CommonsPoolFactory
 
Classes in this File Line Coverage Branch Coverage Complexity
CommonsPoolFactory
67%
2/3
N/A
1
 
 1  
 /*
 2  
  * $Id: CommonsPoolFactory.java 7963 2007-08-21 08:53:15Z dirk.olmes $
 3  
  * --------------------------------------------------------------------------------------
 4  
  * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com
 5  
  *
 6  
  * The software in this package is published under the terms of the CPAL v1.0
 7  
  * license, a copy of which has been included with this distribution in the
 8  
  * LICENSE.txt file.
 9  
  */
 10  
 
 11  
 package org.mule.config.pool;
 12  
 
 13  
 import org.mule.config.PoolingProfile;
 14  
 import org.mule.impl.MuleDescriptor;
 15  
 import org.mule.umo.UMODescriptor;
 16  
 import org.mule.umo.model.UMOModel;
 17  
 import org.mule.umo.model.UMOPoolFactory;
 18  
 import org.mule.util.ObjectFactory;
 19  
 import org.mule.util.ObjectPool;
 20  
 
 21  
 /**
 22  
  * <code>CommonsPoolFactory</code> is a commons-pool pool implementation for mule.
 23  
  * this is the default implementation used if no other is configured.
 24  
  */
 25  3568
 public class CommonsPoolFactory implements UMOPoolFactory
 26  
 {
 27  
     public ObjectPool createPool(UMODescriptor descriptor, UMOModel model, ObjectFactory factory, PoolingProfile pp)
 28  
     {
 29  0
         return new CommonsPoolProxyPool((MuleDescriptor) descriptor, model, factory, pp);
 30  
     }
 31  
 
 32  
     public ObjectPool createPool(UMODescriptor descriptor, UMOModel model, PoolingProfile pp)
 33  
     {
 34  34
         return new CommonsPoolProxyPool((MuleDescriptor) descriptor, model, new CommonsPoolProxyFactory(
 35  
             (MuleDescriptor) descriptor, model), pp);
 36  
     }
 37  
 }