org.springframework.data.gemfire.repository
Interface GemfireRepository<T,ID extends Serializable>

All Superinterfaces:
org.springframework.data.repository.CrudRepository<T,ID>, org.springframework.data.repository.Repository<T,ID>
All Known Implementing Classes:
SimpleGemfireRepository

public interface GemfireRepository<T,ID extends Serializable>
extends org.springframework.data.repository.CrudRepository<T,ID>

Gemfire-specific extension of the CrudRepository interface.

See Also:
Serializable, CrudRepository

Method Summary
 Iterable<T> findAll(org.springframework.data.domain.Sort sort)
          Returns all entities sorted by the given options.
 T save(Wrapper<T,ID> wrapper)
           
 
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, delete, delete, deleteAll, exists, findAll, findAll, findOne, save, save
 

Method Detail

findAll

Iterable<T> findAll(org.springframework.data.domain.Sort sort)
Returns all entities sorted by the given options.

Parameters:
sort - the Spring Data Commons Sort type defining the ordering criteria.
Returns:
all entities sorted by the given options.
See Also:
PagingAndSortingRepository.findAll(org.springframework.data.domain.Sort), Sort, Iterable

save

T save(Wrapper<T,ID> wrapper)