|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.jca.cci.object.EisOperation org.springframework.jca.cci.object.MappingRecordOperation
public abstract class MappingRecordOperation
EIS operation object that expects mapped input and output objects, converting to and from CCI Records.
Concrete subclasses must implement the abstract
createInputRecord(RecordFactory, Object)
and
extractOutputData(Record)
methods, to create an input
Record from an object and to convert an output Record into an object,
respectively.
createInputRecord(javax.resource.cci.RecordFactory, Object)
,
extractOutputData(javax.resource.cci.Record)
Nested Class Summary | |
---|---|
protected class |
MappingRecordOperation.RecordCreatorImpl
Implementation of RecordCreator that calls the enclosing class's createInputRecord method. |
protected class |
MappingRecordOperation.RecordExtractorImpl
Implementation of RecordExtractor that calls the enclosing class's extractOutputData method. |
Constructor Summary | |
---|---|
MappingRecordOperation()
Constructor that allows use as a JavaBean. |
|
MappingRecordOperation(ConnectionFactory connectionFactory,
InteractionSpec interactionSpec)
Convenient constructor with ConnectionFactory and specifications (connection and interaction). |
Method Summary | |
---|---|
protected abstract Record |
createInputRecord(RecordFactory recordFactory,
Object inputObject)
Subclasses must implement this method to generate an input Record from an input object passed into the execute method. |
Object |
execute(Object inputObject)
Execute the interaction encapsulated by this operation object. |
protected abstract Object |
extractOutputData(Record outputRecord)
Subclasses must implement this method to convert the Record returned by CCI execution into a result object for the execute method. |
void |
setOutputRecordCreator(RecordCreator creator)
Set a RecordCreator that should be used for creating default output Records. |
Methods inherited from class org.springframework.jca.cci.object.EisOperation |
---|
afterPropertiesSet, getCciTemplate, getInteractionSpec, setCciTemplate, setConnectionFactory, setInteractionSpec |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public MappingRecordOperation()
public MappingRecordOperation(ConnectionFactory connectionFactory, InteractionSpec interactionSpec)
connectionFactory
- ConnectionFactory to use to obtain connectionsMethod Detail |
---|
public void setOutputRecordCreator(RecordCreator creator)
Default is none: CCI's Interaction.execute
variant
that returns an output Record will be called.
Specify a RecordCreator here if you always need to call CCI's
Interaction.execute
variant with a passed-in output Record.
This RecordCreator will then be invoked to create a default output Record instance.
public Object execute(Object inputObject) throws DataAccessException
inputObject
- the input data, to be converted to a Record
by the createInputRecord
method
extractOutputData
method
DataAccessException
- if there is any problemcreateInputRecord(javax.resource.cci.RecordFactory, java.lang.Object)
,
extractOutputData(javax.resource.cci.Record)
protected abstract Record createInputRecord(RecordFactory recordFactory, Object inputObject) throws ResourceException, DataAccessException
execute
method.
inputObject
- the passed-in input object
ResourceException
- if thrown by a CCI method, to be auto-converted
to a DataAccessException
DataAccessException
execute(Object)
protected abstract Object extractOutputData(Record outputRecord) throws ResourceException, SQLException, DataAccessException
execute
method.
outputRecord
- the Record returned by CCI execution
ResourceException
- if thrown by a CCI method, to be auto-converted
to a DataAccessException
SQLException
DataAccessException
execute(Object)
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |