Spring Data Commons

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

All Known Implementing Classes:
RepositoryFactoryBeanSupport, TransactionalRepositoryFactoryBeanSupport

public interface RepositoryFactoryInformation<T,ID extends java.io.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.
 java.lang.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

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

Returns:

Spring Data Commons

Copyright © 2012. All Rights Reserved.