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.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 PagingAndSortingRepository<T,ID extends Serializable>
          Extension of Repository to provide additional methods to retrieve entities using the pagination and sorting abstraction.
 

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

Classes in org.springframework.data.repository.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.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.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.
 

Constructors in org.springframework.data.repository.support with parameters of type Repository
DomainClassPropertyEditor(Repository<T,ID> repository, EntityInformation<T,ID> information, PropertyEditorRegistry registry)
          Creates a new DomainClassPropertyEditor for the given Repository.
 


Spring Data Commons

Copyright © 2011. All Rights Reserved.