DATACOUCH-262 - Adapt API in CouchbaseRepositoryFactoryBean.

Related ticket: DATACMNS-891.
This commit is contained in:
Oliver Gierke
2016-12-15 15:11:05 +01:00
parent 810134d416
commit ce8dd97d66

View File

@@ -42,6 +42,15 @@ public class CouchbaseRepositoryFactoryBean<T extends Repository<S, ID>, S, ID e
* Contains the reference to the IndexManager.
*/
private IndexManager indexManager;
/**
* Creates a new {@link CouchbaseRepositoryFactoryBean} for the given repository interface.
*
* @param repositoryInterface must not be {@literal null}.
*/
public CouchbaseRepositoryFactoryBean(Class<? extends T> repositoryInterface) {
super(repositoryInterface);
}
/**
* Set the template reference.