| Interface | Description |
|---|---|
| RepositoryOperations<T extends Model<ID>,ID extends Serializable> |
Basic operations that all repositories must implement, regardless database technology used.
|
| Class | Description |
|---|---|
| QueryCriteria |
Simple representation of a database query evaluation that can be passed to generic
RepositoryOperations implementations. |
| QueryCriteriaBuilder |
TODO
QueryCriteriaBuilder.where("symbol").is("AKT1").and("signal").between(3.0, 1.2).build();
|
| QueryParameterDescriptor |
POJO that describes a model query parameter, used when reflecting
Model
classes and mapping HTTP requests to QueryCriteria. |
| Enum | Description |
|---|---|
| Evaluation |
List of constants, representing database query evaluations, to be supported by each repository
implementation.
|
| Annotation Type | Description |
|---|---|
| ModelRepository |
Identifies the annotated class as a
Repository and allows it to be referenced as the
primary interface for the provided Model instance. |
Copyright © 2016. All rights reserved.