javax.resource.cci
public interface: RecordFactory [javadoc |
source]
The RecordFactory interface is used for creating MappedRecord and
IndexedRecord instances. Note that the RecordFactory is only used
for creation of generic record instances. A CCI implementation
provides an implementation class for the RecordFactory interface.
| Method from javax.resource.cci.RecordFactory Detail: |
public IndexedRecord createIndexedRecord(String recordName) throws ResourceException
Creates a IndexedRecord. The method takes the name of the record
that is to be created by the RecordFactory. The name of the
record acts as a pointer to the meta information (stored in
the metadata repository) for a specific record type. |
public MappedRecord createMappedRecord(String recordName) throws ResourceException
Creates a MappedRecord. The method takes the name of the record
that is to be created by the RecordFactory. The name of the
record acts as a pointer to the meta information (stored in
the metadata repository) for a specific record type. |