All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.internet2.middleware.grouperClient.jdbc.GcResultSetCallback Maven / Gradle / Ivy

There is a newer version: 5.12.2
Show newest version
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;
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy