edu.internet2.middleware.grouperClient.jdbc
Class GcResultSetCallback<T>

java.lang.Object
  extended by edu.internet2.middleware.grouperClient.jdbc.GcResultSetCallback<T>
Type Parameters:
T - is the type of object that will be returned.

public abstract class GcResultSetCallback<T>
extends java.lang.Object

Object that gets a resulset via callback.

Author:
harveycg

Constructor Summary
GcResultSetCallback()
           
 
Method Summary
abstract  T callback(java.sql.ResultSet resultSet)
          Get access to the resultset.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GcResultSetCallback

public GcResultSetCallback()
Method Detail

callback

public abstract T callback(java.sql.ResultSet resultSet)
                    throws java.lang.Exception
Get access to the resultset.

Parameters:
resultSet - is the resultSet.
Returns:
whatever you want to.
Throws:
java.lang.Exception - if things go wrong in your code.