| Modifier and Type | Class and Description |
|---|---|
class |
AbstractRecordFileReader<T extends Model<?>>
Simple abstract implementation of
RecordReader, for reading input files. |
class |
AbstractRecordFileWriter<T extends Model<?>>
Basic abstract implementation of
RecordWriter, for writing records to temp files. |
class |
GenericRecordProcessor<T extends Model<?>>
Basic
RecordProcessor implementation, which can be used to handle most file import jobs. |
class |
RecordCollectionReader<T extends Model<?>>
Simple
RecordReader implementation that iterates through a collection if Model
records, rather than reading from a data source. |
interface |
RecordProcessor<T extends Model<?>>
Record processors take all of the individual data import components (reader, writer, validator,
and importer), and combines them to handle a single data type's import
|
interface |
RecordReader<T extends Model<?>>
Data impoer component class.
|
interface |
RecordWriter<T extends Model<?>>
Data import component class for writing imported
Model records to a temporary file or
RepositoryOperations implementation. |
class |
RepositoryRecordUpdater<T extends Model<ID>,ID extends Serializable>
Simple implementation of
RecordWriter, that updates existing database records
using a RepositoryOperations implementation. |
class |
RepositoryRecordWriter<T extends Model<?>>
Simple implementation of
RecordWriter, that writes all records directly to the database
using a RepositoryOperations implementation. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ModelSupport<T extends Model<?>>
Ensures that component classes that support
Model classes have accessible type definitions. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
DataFileMetadata<ID extends Serializable>
Deprecated.
|
interface |
DataSetMetadata<ID extends Serializable>
Deprecated.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BasicDataFileMetadata
Deprecated.
|
class |
BasicDataSetMetadata
Deprecated.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
RepositoryOperations<T extends Model<ID>,ID extends Serializable>
Basic operations that all repositories must implement, regardless database technology used.
|
| Modifier and Type | Method and Description |
|---|---|
Iterable<Class<? extends Model>> |
ModelRegistry.getRegisteredComponents() |
| Modifier and Type | Method and Description |
|---|---|
void |
ModelRegistry.add(Class<? extends Model> model) |
boolean |
ModelRepositoryRegistry.exists(Class<? extends Model> type)
Tests to see if a
Model has an RepositoryOperations bean registered. |
List<RepositoryOperations> |
ModelRepositoryRegistry.findByModel(Class<? extends Model> type)
Returns all instances of
RepositoryOperations beans that are associated with a
particular Model class. |
| Constructor and Description |
|---|
JsonModelConverter(Class<? extends Model> model) |
JsonModelConverter(com.fasterxml.jackson.databind.ObjectMapper mapper,
Class<? extends Model> model) |
KeyValueMapModelConverter(Class<? extends Model> model) |
KeyValueMapModelConverter(com.fasterxml.jackson.databind.ObjectMapper mapper,
Class<? extends Model> model) |
Copyright © 2016. All rights reserved.