Spring Data Commmons

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<?,?>>
          Adapter for Springs FactoryBean interface to allow easy setup of repository factories via Spring configuration.
 class TransactionalRepositoryFactoryBeanSupport<T extends Repository<?,?>>
          Extension of RepositoryFactoryBeanSupport to add transactional capabilities to the repository proxy.
 

Classes in org.springframework.data.repository.support that implement Repository
 class RepositorySupport<T,ID extends Serializable>
          Abstract base class for generic repositories.
 

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.
<T extends Repository<?,?>>
T
RepositoryFactorySupport.getRepository(Class<T> repositoryInterface, Object customImplementation)
          Returns a repository instance for the given interface backed by an instance providing implementation logic for custom logic.
 

Method parameters in org.springframework.data.repository.support with type arguments of type Repository
protected  void RepositoryFactorySupport.validate(Class<? extends Repository<?,?>> repositoryInterface, Object customImplementation)
          Validates the given repository interface as well as the given custom implementation.
 


Spring Data Commmons

Copyright © 2011. All Rights Reserved.