Skip to content

Commit 63fc047

Browse files
committed
DATAMONGO-1581 - Expose ReactiveMongoRepositoryConfigurationExtension as public type.
Expose ReactiveMongoRepositoryConfigurationExtension so configuration extensions such as Spring Boot's ReactiveMongoRepositoriesAutoConfigureRegistrar can pick it up and reuse the repository configuration extension.
1 parent 44e872c commit 63fc047

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/repository/config/ReactiveMongoRepositoryConfigurationExtension.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016 the original author or authors.
2+
* Copyright 2016-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -13,7 +13,6 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
1716
package org.springframework.data.mongodb.repository.config;
1817

1918
import java.util.Collection;
@@ -38,7 +37,7 @@
3837
* @author Oliver Gierke
3938
* @since 2.0
4039
*/
41-
class ReactiveMongoRepositoryConfigurationExtension extends MongoRepositoryConfigurationExtension {
40+
public class ReactiveMongoRepositoryConfigurationExtension extends MongoRepositoryConfigurationExtension {
4241

4342
private static final String MONGO_TEMPLATE_REF = "reactive-mongo-template-ref";
4443
private static final String CREATE_QUERY_INDEXES = "create-query-indexes";

0 commit comments

Comments
 (0)