public interface RecordCreator
Used for input Record creation in CciTemplate. Alternatively,
Record instances can be passed into CciTemplate's corresponding
execute
methods directly, either instantiated manually
or created through CciTemplate's Record factory methods.
Also used for creating default output Records in CciTemplate.
This is useful when the JCA connector needs an explicit output Record
instance, but no output Records should be passed into CciTemplate's
execute
methods.
CciTemplate.execute(javax.resource.cci.InteractionSpec, RecordCreator)
,
CciTemplate.execute(javax.resource.cci.InteractionSpec, RecordCreator, RecordExtractor)
,
CciTemplate.createIndexedRecord(String)
,
CciTemplate.createMappedRecord(String)
,
CciTemplate.setOutputRecordCreator(RecordCreator)
Modifier and Type | Method and Description |
---|---|
Record |
createRecord(RecordFactory recordFactory)
Create a CCI Record instance, usually based on the passed-in CCI RecordFactory.
|
Record createRecord(RecordFactory recordFactory) throws ResourceException, DataAccessException
For use as input creator with CciTemplate's execute
methods,
this method should create a populated Record instance. For use as
output Record creator, it should return an empty Record instance.
recordFactory
- the CCI RecordFactory (never null
, but not guaranteed to be
supported by the connector: its create methods might throw NotSupportedException)ResourceException
- if thrown by a CCI method, to be auto-converted
to a DataAccessExceptionDataAccessException
- in case of custom exceptions