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.
This commit is contained in:
Mark Paluch
2017-01-17 14:14:08 +01:00
parent 44e872c7df
commit 63fc047160

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2016 the original author or authors.
* Copyright 2016-2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.mongodb.repository.config;
import java.util.Collection;
@@ -38,7 +37,7 @@ import org.w3c.dom.Element;
* @author Oliver Gierke
* @since 2.0
*/
class ReactiveMongoRepositoryConfigurationExtension extends MongoRepositoryConfigurationExtension {
public class ReactiveMongoRepositoryConfigurationExtension extends MongoRepositoryConfigurationExtension {
private static final String MONGO_TEMPLATE_REF = "reactive-mongo-template-ref";
private static final String CREATE_QUERY_INDEXES = "create-query-indexes";