|
Spring Data Core | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |
@Documented @Retention(value=RUNTIME) @Target(value=TYPE) @Inherited public @interface RepositoryDefinition
Annotation to demarcate interfaces a repository proxy shall be created for. Annotating an interface with
RepositoryDefinition
will cause the same behaviour as extending Repository
.
Repository
Required Element Summary | |
---|---|
Class<?> |
domainClass
The domain class the repository manages. |
Class<? extends Serializable> |
idClass
The id class of the entity the repository manages. |
Element Detail |
---|
public abstract Class<?> domainClass
Repository
.
Repository
public abstract Class<? extends Serializable> idClass
Repository
.
Repository
|
Spring Data Core | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |