DATACASS-369 - Adapt API in ReactiveCassandraRepositoryFactoryBean.

Related tickets: DATACMNS-891.
This commit is contained in:
Oliver Gierke
2016-12-16 10:00:56 +01:00
parent 019588bc78
commit 2affe27fa5

View File

@@ -40,6 +40,15 @@ public class ReactiveCassandraRepositoryFactoryBean<T extends Repository<S, ID>,
private boolean mappingContextConfigured = false;
private ReactiveCassandraOperations operations;
/**
* Creates a new {@link ReactiveCassandraRepositoryFactoryBean} for the given repository interface.
*
* @param repositoryInterface must not be {@literal null}.
*/
public ReactiveCassandraRepositoryFactoryBean(Class<? extends T> repositoryInterface) {
super(repositoryInterface);
}
/**
* Configures the {@link ReactiveCassandraOperations} used for Cassandra data access operations.