Uses of Interface
com.rhi.architecture.parc.Record

Packages that use Record
com.rhi.architecture.parc   
com.rhi.architecture.parc.adapter   
com.rhi.architecture.parc.adapter.file   
com.rhi.architecture.parc.adapter.jdbc   
 

Uses of Record in com.rhi.architecture.parc
 

Classes in com.rhi.architecture.parc that implement Record
 class AbstractRecord
          Record implementation providing the std error handling.
 class ListRecordSet
          The RecordSet is a group of Records.
 class MapRecordSet
          The RecordSet is a group of Records.
 

Methods in com.rhi.architecture.parc that return Record
 Record Error.getRecord()
          Get the Record which has the error.
 Record AbstractError.getRecord()
          Get the Record which has the error.
 

Methods in com.rhi.architecture.parc with parameters of type Record
 void MapRecordSet.put(java.lang.Object key, Record r)
          Add a new Record to the set.
 void ListRecordSet.add(Record r)
          Add a new Record to the set.
 boolean ListRecordSet.remove(Record r)
          Remove a Record from the set.
 void InputAdapter.addToErrorChannel(Record record)
          The concrete input adapter can use this method to add error records to the error channel while maintaining the correct audit entries for valid (returned from loadBatch() & pushed into the normal pipeline channel) & errors (added by calling addError() & pushed into the error channel.
 void AbstractError.setRecord(Record record)
          Sets the Record to which this Error belongs.
 

Uses of Record in com.rhi.architecture.parc.adapter
 

Methods in com.rhi.architecture.parc.adapter with parameters of type Record
 void AbstractInputAdapter.addToErrorChannel(Record record)
          The concrete input adapter can use this method to add error records to the error channel while maintaining the correct audit entries for valid (returned from loadBatch() & pushed into the normal pipeline channel) & errors (added by calling addError() & pushed into the error channel.
 

Uses of Record in com.rhi.architecture.parc.adapter.file
 

Methods in com.rhi.architecture.parc.adapter.file that return Record
protected abstract  Record AbstractFileInputAdapter.readRow(java.util.ArrayList al)
          Extract the attributes from the ArrayList and return a Record object.
 

Uses of Record in com.rhi.architecture.parc.adapter.jdbc
 

Methods in com.rhi.architecture.parc.adapter.jdbc that return Record
protected abstract  Record JDBCInputAdapter.readRow(java.sql.ResultSet rs)
          Extract the attributes from the ResultSet and return a Record object.
 

Methods in com.rhi.architecture.parc.adapter.jdbc with parameters of type Record
protected  boolean JDBCOutputAdapter.persistValidRecord(Record record, Transaction t)
          Add or update valid records to the output table.
protected  java.sql.PreparedStatement JDBCOutputAdapter.prepareValidStatement(Record record, java.sql.Connection conn)
          Get SQL, prepare SQL statement, and set all the appropriate fields.
protected  void JDBCOutputAdapter.setValidStatementFields(Record record, java.sql.PreparedStatement stmt)
          Set all the fields on the prepared statement using the output record.
protected  boolean JDBCOutputAdapter.updateSourceForValidRecord(Record record, Transaction t)
          Mark the source record complete.
protected  java.sql.PreparedStatement JDBCOutputAdapter.prepareStatementForValidSourceRecord(Record record, java.sql.Connection conn)
          Get SQL, prepare SQL statement, and set all the error fields.
protected  void JDBCOutputAdapter.setStatementForValidSourceRecord(Record record, java.sql.PreparedStatement stmt)
          Set the appropriate fields on the prepared statement Not abstract so that sub-classes that don't use prepareErrorStatement need not implement this w/ a no-op, but if anyone who _should_ implement it doesn't, it will "fail fast" & let them know immediately.
protected  boolean JDBCOutputAdapter.updateSourceForErrorRecord(Record record, Transaction t)
          Mark the source record complete.
protected  java.sql.PreparedStatement JDBCOutputAdapter.prepareStatementForErrorSourceRecord(Record record, java.sql.Connection conn)
          Get SQL, prepare SQL statement, and set all the error fields.
protected  void JDBCOutputAdapter.setStatementForErrorSourceRecord(Record record, java.sql.PreparedStatement stmt)
          Set the appropriate fields on the prepared statement Not abstract so that sub-classes that don't use prepareErrorStatement need not implement this w/ a no-op, but if anyone who _should_ implement it doesn't, it will "fail fast" & let them know immediately.
protected  void JDBCOutputAdapter.addErrorToRecord(Record r)
          Add error to valid record for a problem during output adapter processing.
 



Copyright © 2002-2004 Robert Half International. All Rights Reserved.