org.springframework.jca.cci.core
Class CciTemplate.SimpleRecordExtractor

java.lang.Object
  extended by org.springframework.jca.cci.core.CciTemplate.SimpleRecordExtractor
All Implemented Interfaces:
RecordExtractor<Record>
Enclosing class:
CciTemplate

private static class CciTemplate.SimpleRecordExtractor
extends java.lang.Object
implements RecordExtractor<Record>


Constructor Summary
private CciTemplate.SimpleRecordExtractor()
           
 
Method Summary
 Record extractData(Record record)
          Process the data in the given Record, creating a corresponding result object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CciTemplate.SimpleRecordExtractor

private CciTemplate.SimpleRecordExtractor()
Method Detail

extractData

public Record extractData(Record record)
Description copied from interface: RecordExtractor
Process the data in the given Record, creating a corresponding result object.

Specified by:
extractData in interface RecordExtractor<Record>
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)
See Also:
javax.resource.cci.ResultSet