DATACASS-422 - Fix the CassandraRepositoryConfigurationExtension class which does not correctly override the renamed SDC RepositoryConfigurationExtenstionSupport.getRepositoryFactoryBeanClassName() method.

This commit is contained in:
John Blum
2017-03-24 11:51:50 -07:00
parent 0b7be71a7b
commit 05d2a38848
2 changed files with 2 additions and 2 deletions

View File

@@ -65,7 +65,7 @@ public class CassandraRepositoryConfigurationExtension extends RepositoryConfigu
* @see org.springframework.data.repository.config.RepositoryConfigurationExtension#getRepositoryFactoryClassName()
*/
@Override
public String getRepositoryFactoryClassName() {
public String getRepositoryFactoryBeanClassName() {
return CassandraRepositoryFactoryBean.class.getName();
}

View File

@@ -46,7 +46,7 @@ public class ReactiveCassandraRepositoryConfigurationExtension extends Cassandra
* @see org.springframework.data.cassandra.repository.config.CassandraRepositoryConfigurationExtension#getRepositoryFactoryClassName()
*/
@Override
public String getRepositoryFactoryClassName() {
public String getRepositoryFactoryBeanClassName() {
return ReactiveCassandraRepositoryFactoryBean.class.getName();
}