Spring Data Commons

org.springframework.data.repository.core.support
Interface RepositoryFactoryInformation<T,ID extends Serializable>

All Known Implementing Classes:
RepositoryFactoryBeanSupport, TransactionalRepositoryFactoryBeanSupport

public interface RepositoryFactoryInformation<T,ID extends Serializable>

Interface for components that can provide EntityInformation this interface

Author:
Oliver Gierke

Method Summary
 EntityInformation<T,ID> getEntityInformation()
          Returns EntityInformation the repository factory is using.
 Class<? extends Repository<T,ID>> getRepositoryInterface()
          Returns the interface of the Repository the factory will create.
 

Method Detail

getEntityInformation

EntityInformation<T,ID> getEntityInformation()
Returns EntityInformation the repository factory is using.

Returns:

getRepositoryInterface

Class<? extends Repository<T,ID>> getRepositoryInterface()
Returns the interface of the Repository the factory will create.

Returns:

Spring Data Commons

Copyright © 2011. All Rights Reserved.