Save This Page
Home » spring-framework-2.5.5-with-dependencies » org.springframework.jca » cci » object » [javadoc | source]
org.springframework.jca.cci.object
abstract public class: MappingCommAreaOperation [javadoc | source]
java.lang.Object
   org.springframework.jca.cci.object.EisOperation
      org.springframework.jca.cci.object.MappingRecordOperation
         org.springframework.jca.cci.object.MappingCommAreaOperation

All Implemented Interfaces:
    InitializingBean

EIS operation object for access to COMMAREA records. Subclass of the generic MappingRecordOperation class.
Constructor:
 public MappingCommAreaOperation() 
 public MappingCommAreaOperation(ConnectionFactory connectionFactory,
    InteractionSpec interactionSpec) 
    Create a new MappingCommAreaQuery.
    Parameters:
    connectionFactory - ConnectionFactory to use to obtain connections
    interactionSpec - specification to configure the interaction
Method from org.springframework.jca.cci.object.MappingCommAreaOperation Summary:
bytesToObject,   createInputRecord,   extractOutputData,   objectToBytes
Methods from org.springframework.jca.cci.object.MappingRecordOperation:
createInputRecord,   execute,   extractOutputData,   setOutputRecordCreator
Methods from org.springframework.jca.cci.object.EisOperation:
afterPropertiesSet,   getCciTemplate,   getInteractionSpec,   setCciTemplate,   setConnectionFactory,   setInteractionSpec
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.springframework.jca.cci.object.MappingCommAreaOperation Detail:
 abstract protected Object bytesToObject(byte[] bytes) throws DataAccessException, IOException
    Method used to convert the COMMAREA's bytes to an object.
 protected final Record createInputRecord(RecordFactory recordFactory,
    Object inObject) 
 protected final Object extractOutputData(Record record) throws DataAccessException 
 abstract protected byte[] objectToBytes(Object inObject) throws DataAccessException, IOException
    Method used to convert an object into COMMAREA bytes.