DATAGEODE-306 - Edit Javadoc on the GemfireRepository interface.

This commit is contained in:
John Blum
2020-09-22 13:01:52 -07:00
parent a294da744e
commit bebe1fb756

View File

@@ -38,6 +38,13 @@ public interface GemfireRepository<T, ID> extends CrudRepository<T, ID> {
*/
Iterable<T> findAll(Sort sort);
/**
* Save the entity wrapped by the given {@link Wrapper}.
*
* @param wrapper {@link Wrapper} object wrapping the entity and the identifier of the entity (i.e. key).
* @return the saved entity.
* @see org.springframework.data.gemfire.repository.Wrapper
*/
T save(Wrapper<T, ID> wrapper);
}