SGF-576 - Adapt API in GemfireRepositoryFactoryBean.

Related ticket: DATACMNS-891.
This commit is contained in:
Oliver Gierke
2016-12-15 21:56:34 +01:00
parent c982d6ee74
commit fe4527a45a
3 changed files with 17 additions and 10 deletions

View File

@@ -57,6 +57,15 @@ public class GemfireRepositoryFactoryBean<T extends Repository<S, ID>, S, ID ext
private MappingContext<? extends GemfirePersistentEntity<?>, GemfirePersistentProperty> mappingContext;
/**
* Creates a new {@link GemfireRepositoryFactoryBean} for the given repository interface.
*
* @param repositoryInterface must not be {@literal null}.
*/
public GemfireRepositoryFactoryBean(Class<? extends T> repositoryInterface) {
super(repositoryInterface);
}
/**
* Sets a reference to the Spring {@link ApplicationContext} in which this object runs.
*