|
Spring Data Core | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface CrudMethods
Meta-information about the CRUD methods of a repository.
| Method Summary | |
|---|---|
Method |
getDeleteMethod()
Returns the delete method of the repository. |
Method |
getFindAllMethod()
Returns the find all method of the repository. |
Method |
getFindOneMethod()
Returns the find one method of the repository. |
Method |
getSaveMethod()
Returns the method to be used for saving entities. |
boolean |
hasDelete()
Returns whether the repository esposes a delete method. |
boolean |
hasFindAllMethod()
Returns whether the repository exposes a find all method at all. |
boolean |
hasFindOneMethod()
Returns whether the repository exposes a find one method. |
boolean |
hasSaveMethod()
Returns whether the repository exposes a save method at all. |
| Method Detail |
|---|
Method getSaveMethod()
CrudRepository.save(Object).
hasSaveMethod()boolean hasSaveMethod()
Method getFindAllMethod()
PagingAndSortingRepository's taking a Pageable or Sort instance.
hasFindAllMethod()boolean hasFindAllMethod()
Method getFindOneMethod()
CrudRepository.findOne(java.io.Serializable)
hasFindOneMethod()boolean hasFindOneMethod()
Method getDeleteMethod()
hasDelete()boolean hasDelete()
|
Spring Data Core | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||