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. /** The interface <code>javax.resource.cci.MappedRecord</code> is
  7. * used for key-value map based representation of record elements.
  8. * The MappedRecord interface extends both <code>Record</code> and
  9. * <code>java.util.Map</code>interfaces.
  10. *
  11. * @author Rahul Sharma
  12. * @version 0.8
  13. **/
  14. public interface MappedRecord extends Record, java.util.Map,
  15. java.io.Serializable {
  16. }