Class GcResultSetCallback<T>

java.lang.Object
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 Object
Object that gets a resulset via callback.
  • Constructor Details

    • GcResultSetCallback

      public GcResultSetCallback()
  • Method Details

    • callback

      public abstract T callback(ResultSet resultSet) throws Exception
      Get access to the resultset.
      Parameters:
      resultSet - is the resultSet.
      Returns:
      whatever you want to.
      Throws:
      Exception - if things go wrong in your code.