public interface CrudMethods
| Modifier and Type | Method and Description |
|---|---|
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 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()
Copyright © 2011-2015–2016 Pivotal Software, Inc.. All rights reserved.