Save This Page
Home » commons-pool-1.4-src » org.apache.commons » pool » [javadoc | source]
org.apache.commons.pool
abstract public class: BasePoolableObjectFactory [javadoc | source]
java.lang.Object
   org.apache.commons.pool.BasePoolableObjectFactory

All Implemented Interfaces:
    PoolableObjectFactory

A base implementation of PoolableObjectFactory.

All operations defined here are essentially no-op's.

Method from org.apache.commons.pool.BasePoolableObjectFactory Summary:
activateObject,   destroyObject,   makeObject,   passivateObject,   validateObject
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.commons.pool.BasePoolableObjectFactory Detail:
 public  void activateObject(Object obj) throws Exception 
    No-op.
 public  void destroyObject(Object obj) throws Exception 
    No-op.
 abstract public Object makeObject() throws Exception
 public  void passivateObject(Object obj) throws Exception 
    No-op.
 public boolean validateObject(Object obj) 
    This implementation always returns true.