Name

Record

Synopsis

A Record represents input and output for the execution of interactions with resources. The CCI provides the MappedRecord, IndexedRecord and ResultSet specializations of this interface, and also supports the use of custom JavaBeans for Records.

                  Returned By
public interface Record extends Cloneable, Serializable {
// Public Instance Methods
   public abstract Object clone(
        ) throws CloneNotSupportedException;  
   public abstract boolean equals( Object other);  
   public abstract String getRecordName();  
   public abstract String getRecordShortDescription();  
   public abstract int hashCode();  
   public abstract void setRecordName( String name);  
   public abstract void setRecordShortDescription(
        String description);  
}

Implementations

IndexedRecord, MappedRecord, javax.resource.cci.ResultSet

Passed To

Interaction.execute()

Returned By

Interaction.execute()

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.