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. /** IndexedRecord represents an ordered collection of record elements
  7. * based on the <code>java.util.List</code> interface. This interface
  8. * allows a client to access elements by their integer index (position
  9. * in the list) and search for elements in the List.
  10. *
  11. * @author Rahul Sharma
  12. * @since 0.8
  13. **/
  14. public interface IndexedRecord extends Record, java.util.List,
  15. java.io.Serializable {
  16. }