public interface

RecordExtractor

org.springframework.jca.cci.core.RecordExtractor<T>
Known Indirect Subclasses

Class Overview

Callback interface for extracting a result object from a CCI Record instance.

Used for output object creation in CciTemplate. Alternatively, output Records can also be returned to client code as-is. In case of a CCI ResultSet as execution result, you will almost always want to implement a RecordExtractor, to be able to read the ResultSet in a managed fashion, with the CCI Connection still open while reading the ResultSet.

Implementations of this interface perform the actual work of extracting results, but don't need to worry about exception handling. ResourceExceptions will be caught and handled correctly by the CciTemplate class.

See Also
  • CciTemplate#execute(javax.resource.cci.InteractionSpec, Record, RecordExtractor)
  • CciTemplate#execute(javax.resource.cci.InteractionSpec, RecordCreator, RecordExtractor)
  • javax.resource.cci.ResultSet

Summary

Public Methods
abstract T extractData(Record record)
Process the data in the given Record, creating a corresponding result object.

Public Methods

public abstract T extractData (Record record)

Process the data in the given Record, creating a corresponding result object.

Parameters
record the Record to extract data from (possibly a CCI ResultSet)
Returns
  • an arbitrary result object, or null if none (the extractor will typically be stateful in the latter case)
Throws
if thrown by a CCI method, to be auto-converted to a DataAccessException
SQLException if thrown by a ResultSet method, to be auto-converted to a DataAccessException
DataAccessException in case of custom exceptions
ResourceException
See Also
  • javax.resource.cci.ResultSet