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

Commit 7e077c3

Browse files
committed
DATASOLR-371 - Rename getRepositoryFactoryClassName to getRepositoryFactoryBeanClassName.
1 parent f066eb8 commit 7e077c3

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
<groupId>org.springframework.data.build</groupId>
1616
<artifactId>spring-data-parent</artifactId>
1717
<version>2.0.0.BUILD-SNAPSHOT</version>
18-
<relativePath>../spring-data-build/parent/pom.xml</relativePath>
1918
</parent>
2019

2120
<properties>

src/main/java/org/springframework/data/solr/repository/config/SolrRepositoryConfigExtension.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
/**
4848
* {@link RepositoryConfigurationExtension} implementation to configure Solr repository configuration support,
4949
* evaluating the {@link EnableSolrRepositories} annotation or the equivalent XML element.
50-
*
50+
*
5151
* @author Oliver Gierke
5252
* @author Christoph Strobl
5353
*/
@@ -72,7 +72,7 @@ public String getBeanName() {
7272
* @see org.springframework.data.repository.config.RepositoryConfigurationExtension#getRepositoryFactoryClassName()
7373
*/
7474
@Override
75-
public String getRepositoryFactoryClassName() {
75+
public String getRepositoryFactoryBeanClassName() {
7676
return SolrRepositoryFactoryBean.class.getName();
7777
}
7878

@@ -85,7 +85,7 @@ protected String getModulePrefix() {
8585
return "solr";
8686
}
8787

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

121121
}
122122

123-
/*
123+
/*
124124
* (non-Javadoc)
125125
* @see org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport#postProcess(org.springframework.beans.factory.support.BeanDefinitionBuilder, org.springframework.data.repository.config.XmlRepositoryConfigurationSource)
126126
*/

0 commit comments

Comments
 (0)