Spring Data Commons

org.springframework.data.repository.config
Interface CommonRepositoryConfigInformation

All Known Subinterfaces:
GlobalRepositoryConfigInformation<T>, SingleRepositoryConfigInformation<T>
All Known Implementing Classes:
AutomaticRepositoryConfigInformation, ManualRepositoryConfigInformation, ParentDelegatingRepositoryConfigInformation, RepositoryConfig

public interface CommonRepositoryConfigInformation

Interface for shared repository information.

Author:
Oliver Gierke

Method Summary
 java.lang.String getBasePackage()
          Returns the base package.
 java.lang.String getNamedQueriesLocation()
          Returns the location of the properties file to contain named queries.
 QueryLookupStrategy.Key getQueryLookupStrategyKey()
          Returns the strategy finder methods should be resolved.
 java.lang.String getRepositoryFactoryBeanClassName()
          Returns the configured repository factory class.
 java.lang.String getRepositoryImplementationSuffix()
          Returns the suffix to use for implementation bean lookup or class detection.
 org.w3c.dom.Element getSource()
          Returns the element the repository information is derived from.
 java.lang.String getTransactionManagerRef()
          Returns the bean name of the PlatformTransactionManager to be used.
 

Method Detail

getSource

org.w3c.dom.Element getSource()
Returns the element the repository information is derived from.

Returns:

getBasePackage

java.lang.String getBasePackage()
Returns the base package.

Returns:

getRepositoryImplementationSuffix

java.lang.String getRepositoryImplementationSuffix()
Returns the suffix to use for implementation bean lookup or class detection.

Returns:

getRepositoryFactoryBeanClassName

java.lang.String getRepositoryFactoryBeanClassName()
Returns the configured repository factory class.

Returns:

getTransactionManagerRef

java.lang.String getTransactionManagerRef()
Returns the bean name of the PlatformTransactionManager to be used. Returns null if no reference has been configured explicitly.

Returns:

getQueryLookupStrategyKey

QueryLookupStrategy.Key getQueryLookupStrategyKey()
Returns the strategy finder methods should be resolved.

Returns:

getNamedQueriesLocation

java.lang.String getNamedQueriesLocation()
Returns the location of the properties file to contain named queries.

Returns:

Spring Data Commons

Copyright © 2012. All Rights Reserved.