1. /*
  2. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  3. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  4. */
  5. package javax.resource.cci;
  6. /** A ResultSet represents tabular data that is retrieved from an EIS
  7. * instance by the execution of an Interaction.. The CCI ResultSet is
  8. * based on the JDBC ResultSet.
  9. *
  10. * <p>Refer the CCI specification in Connectors 1.0 for detailed
  11. * requirements on the implementation of a CCI ResultSet.
  12. *
  13. * @author Rahul Sharma
  14. * @since 0.8
  15. * @see java.sql.ResultSet
  16. **/
  17. public interface ResultSet extends Record, java.sql.ResultSet {
  18. }