MappedRecord.java |
/* * JBoss, the OpenSource EJB server * * Distributable under LGPL license. See terms of license at gnu.org. */ package javax.resource.cci; import java.io.Serializable; import java.util.Map; /** * The MappedRecord interface is used for key-value map based representation of * the Record elements. */ public interface MappedRecord extends Record, Map, Serializable { }
MappedRecord.java |