Spring Data Commons

Uses of Interface
org.springframework.data.repository.Repository

Packages that use Repository
org.springframework.data.repository Central interfaces for repository abstraction. 
org.springframework.data.repository.core.support Base classes to implement repositories for various data stores. 
 

Uses of Repository in org.springframework.data.repository
 

Subinterfaces of Repository in org.springframework.data.repository
 interface CrudRepository<T,ID extends Serializable>
          Interface for generic CRUD operations on a repository for a specific type.
 interface PagingAndSortingRepository<T,ID extends Serializable>
          Extension of CrudRepository to provide additional methods to retrieve entities using the pagination and sorting abstraction.
 

Uses of Repository in org.springframework.data.repository.core.support
 

Classes in org.springframework.data.repository.core.support with type parameters of type Repository
 class RepositoryFactoryBeanSupport<T extends Repository<S,ID>,S,ID extends Serializable>
          Adapter for Springs FactoryBean interface to allow easy setup of repository factories via Spring configuration.
 class TransactionalRepositoryFactoryBeanSupport<T extends Repository<S,ID>,S,ID extends Serializable>
          Extension of RepositoryFactoryBeanSupport to add transactional capabilities to the repository proxy.
 

Methods in org.springframework.data.repository.core.support with type parameters of type Repository
<T extends Repository<?,?>>
T
RepositoryFactorySupport.getRepository(Class<T> repositoryInterface)
          Returns a repository instance for the given interface.
 

Methods in org.springframework.data.repository.core.support that return types with arguments of type Repository
 Class<? extends Repository<T,ID>> RepositoryFactoryInformation.getRepositoryInterface()
          Returns the interface of the Repository the factory will create.
 


Spring Data Commons

Copyright © 2011. All Rights Reserved.