Interface SimpleRepository<I extends Serializable,E extends SimpleEntity<I,E>>

Type Parameters:
I - Id type of the data
E - Entity type of the data which is a SimpleEntity
All Superinterfaces:
CRUDRepository<I,E>, org.springframework.data.repository.Repository<E,I>

public interface SimpleRepository<I extends Serializable,E extends SimpleEntity<I,E>> extends CRUDRepository<I,E>
Simple variant of CRUDRepository

This is meant to be implemented from a @Repository interface.