edu.internet2.middleware.grouperClient.jdbc.GcResultSetCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grouperClient Show documentation
Show all versions of grouperClient Show documentation
Client for Grouper LDAP and Web Services
package edu.internet2.middleware.grouperClient.jdbc;
import java.sql.ResultSet;
/**
* Object that gets a resulset via callback.
* @param is the type of object that will be returned.
* @author harveycg
*
*/
public abstract class GcResultSetCallback {
/**
* Get access to the resultset.
* @param resultSet is the resultSet.
* @return whatever you want to.
* @throws Exception if things go wrong in your code.
*/
public abstract T callback(ResultSet resultSet) throws Exception;
}