|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.commons.dbutils.ProxyFactory
public class ProxyFactory
Creates proxy implementations of JDBC interfaces. This avoids incompatibilities between the JDBC 2 and JDBC 3 interfaces. This class is thread safe.
Proxy
,
InvocationHandler
Constructor Summary | |
---|---|
protected |
ProxyFactory()
Protected constructor for ProxyFactory subclasses to use. |
Method Summary | ||
---|---|---|
CallableStatement |
createCallableStatement(InvocationHandler handler)
Creates a new proxy CallableStatement object. |
|
Connection |
createConnection(InvocationHandler handler)
Creates a new proxy Connection object. |
|
Driver |
createDriver(InvocationHandler handler)
Creates a new proxy Driver object. |
|
PreparedStatement |
createPreparedStatement(InvocationHandler handler)
Creates a new proxy PreparedStatement object. |
|
ResultSet |
createResultSet(InvocationHandler handler)
Creates a new proxy ResultSet object. |
|
ResultSetMetaData |
createResultSetMetaData(InvocationHandler handler)
Creates a new proxy ResultSetMetaData object. |
|
Statement |
createStatement(InvocationHandler handler)
Creates a new proxy Statement object. |
|
static ProxyFactory |
instance()
Returns the Singleton instance of this class. |
|
|
newProxyInstance(Class<T> type,
InvocationHandler handler)
Convenience method to generate a single-interface proxy using the handler's classloader |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
protected ProxyFactory()
Method Detail |
---|
public static ProxyFactory instance()
public <T> T newProxyInstance(Class<T> type, InvocationHandler handler)
T
- The type of object to proxytype
- The type of object to proxyhandler
- The handler that intercepts/overrides method calls.
public CallableStatement createCallableStatement(InvocationHandler handler)
CallableStatement
object.
handler
- The handler that intercepts/overrides method calls.
public Connection createConnection(InvocationHandler handler)
Connection
object.
handler
- The handler that intercepts/overrides method calls.
public Driver createDriver(InvocationHandler handler)
Driver
object.
handler
- The handler that intercepts/overrides method calls.
public PreparedStatement createPreparedStatement(InvocationHandler handler)
PreparedStatement
object.
handler
- The handler that intercepts/overrides method calls.
public ResultSet createResultSet(InvocationHandler handler)
ResultSet
object.
handler
- The handler that intercepts/overrides method calls.
public ResultSetMetaData createResultSetMetaData(InvocationHandler handler)
ResultSetMetaData
object.
handler
- The handler that intercepts/overrides method calls.
public Statement createStatement(InvocationHandler handler)
Statement
object.
handler
- The handler that intercepts/overrides method calls.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |