| Interface | Description |
|---|---|
| EntityManagerResolver |
Resolve the EntityManager used for a specific repository.
|
| EntityRepository<E,PK extends Serializable> |
Base Repository interface.
|
| QueryResult<E> |
Can be used as query result type, which will not execute the query immediately.
|
| Class | Description |
|---|---|
| AbstractEntityRepository<E,PK extends Serializable> |
Base Repository class to be extended by concrete implementations
(abstract classes with implementation methods).
|
| Annotation Type | Description |
|---|---|
| EntityManagerConfig |
Configure the EntityManager for a specific repository.
|
| FirstResult |
Use paging for the query.
|
| MaxResults |
Limit the size of the result set.
|
| Modifying |
Marks a query method to be modifying.
|
| Query |
Supply query meta data to a method with this annotation.
|
| QueryParam |
Mark a method parameter as a query parameter.
|
| Repository |
The Repository annotation needs to be present in order to have the
interface or class to be processed by the CDI extension.
|
Copyright © 2011-2013 The Apache Software Foundation. All Rights Reserved.