Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.

Commit

Permalink
DATASOLR-371 - Rename getRepositoryFactoryClassName to getRepositoryF…
Browse files Browse the repository at this point in the history
…actoryBeanClassName.
  • Loading branch information
jxblum committed Mar 24, 2017
1 parent f066eb8 commit 7e077c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
<groupId>org.springframework.data.build</groupId>
<artifactId>spring-data-parent</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
<relativePath>../spring-data-build/parent/pom.xml</relativePath>
</parent>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
/**
* {@link RepositoryConfigurationExtension} implementation to configure Solr repository configuration support,
* evaluating the {@link EnableSolrRepositories} annotation or the equivalent XML element.
*
*
* @author Oliver Gierke
* @author Christoph Strobl
*/
Expand All @@ -72,7 +72,7 @@ public String getBeanName() {
* @see org.springframework.data.repository.config.RepositoryConfigurationExtension#getRepositoryFactoryClassName()
*/
@Override
public String getRepositoryFactoryClassName() {
public String getRepositoryFactoryBeanClassName() {
return SolrRepositoryFactoryBean.class.getName();
}

Expand All @@ -85,7 +85,7 @@ protected String getModulePrefix() {
return "solr";
}

/*
/*
* (non-Javadoc)
* @see org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport#postProcess(org.springframework.beans.factory.support.BeanDefinitionBuilder, org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource)
*/
Expand Down Expand Up @@ -120,7 +120,7 @@ public void registerBeansForRoot(BeanDefinitionRegistry registry, RepositoryConf

}

/*
/*
* (non-Javadoc)
* @see org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport#postProcess(org.springframework.beans.factory.support.BeanDefinitionBuilder, org.springframework.data.repository.config.XmlRepositoryConfigurationSource)
*/
Expand Down

0 comments on commit 7e077c3

Please sign in to comment.