bitronix.tm.resource.jdbc
Class JdbcResultSetHandle

java.lang.Object
  extended by bitronix.tm.resource.jdbc.BaseProxyHandlerClass
      extended by bitronix.tm.resource.jdbc.JdbcResultSetHandle
All Implemented Interfaces:
InvocationHandler

public class JdbcResultSetHandle
extends BaseProxyHandlerClass

ResultSet ResultSet wrapper.

This class is a proxy handler for a ResultSet. It does not implement the ResultSet interface or extend a class directly, but you methods implemented here will override those of the underlying delegate. Simply implement a method with the same signature, and the local method will be called rather than the delegate.

Author:
brettw

Constructor Summary
JdbcResultSetHandle(ResultSet delegate, BaseProxyHandlerClass statementHandle)
           
 
Method Summary
 void close()
           
 Object getProxiedDelegate()
          Must be implemented by the sub-class of this class.
 Statement getStatement()
           
 boolean isWrapperFor(Class<?> iface)
           
<T> T
unwrap(Class<T> iface)
           
 
Methods inherited from class bitronix.tm.resource.jdbc.BaseProxyHandlerClass
invoke
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JdbcResultSetHandle

public JdbcResultSetHandle(ResultSet delegate,
                           BaseProxyHandlerClass statementHandle)
Method Detail

isWrapperFor

public boolean isWrapperFor(Class<?> iface)
                     throws SQLException
Throws:
SQLException

unwrap

public <T> T unwrap(Class<T> iface)
         throws SQLException
Throws:
SQLException

getProxiedDelegate

public Object getProxiedDelegate()
                          throws Exception
Description copied from class: BaseProxyHandlerClass
Must be implemented by the sub-class of this class. This method should return the "true" object to be delegated to in the case that the method is not overridden by the sub-class.

Specified by:
getProxiedDelegate in class BaseProxyHandlerClass
Returns:
the true delegate object
Throws:
Exception - can throw any exception if desired

close

public void close()
           throws SQLException
Throws:
SQLException

getStatement

public Statement getStatement()
                       throws SQLException
Throws:
SQLException


Copyright © 2006-2013 Bitronix Software. All Rights Reserved.