Package | Description |
---|---|
org.springframework.jca.cci.core |
Provides the core JCA CCI support, based on CciTemplate
and its associated callback interfaces.
|
org.springframework.jca.cci.object |
The classes in this package represent EIS operations as threadsafe,
reusable objects.
|
Modifier and Type | Method and Description |
---|---|
RecordCreator |
CciTemplate.getOutputRecordCreator()
Return a RecordCreator that should be used for creating default output Records.
|
Modifier and Type | Method and Description |
---|---|
protected Record |
CciTemplate.createRecord(RecordCreator recordCreator)
Invoke the given RecordCreator, converting JCA ResourceExceptions
to Spring's DataAccessException hierarchy.
|
Record |
CciOperations.execute(InteractionSpec spec,
RecordCreator inputCreator)
Execute the specified interaction on an EIS with CCI.
|
Record |
CciTemplate.execute(InteractionSpec spec,
RecordCreator inputCreator) |
<T> T |
CciOperations.execute(InteractionSpec spec,
RecordCreator inputCreator,
RecordExtractor<T> outputExtractor)
Execute the specified interaction on an EIS with CCI.
|
<T> T |
CciTemplate.execute(InteractionSpec spec,
RecordCreator inputCreator,
RecordExtractor<T> outputExtractor) |
void |
CciTemplate.setOutputRecordCreator(RecordCreator creator)
Set a RecordCreator that should be used for creating default output Records.
|
Modifier and Type | Class and Description |
---|---|
protected class |
MappingRecordOperation.RecordCreatorImpl
Implementation of RecordCreator that calls the enclosing
class's
createInputRecord method. |
Modifier and Type | Method and Description |
---|---|
void |
MappingRecordOperation.setOutputRecordCreator(RecordCreator creator)
Set a RecordCreator that should be used for creating default output Records.
|