SGF-102 - @EnableGemfireRepositories now gets inherited by sub-classes.

This commit is contained in:
Oliver Gierke
2012-08-13 12:17:12 +02:00
parent 07a3e6e4e8
commit e55c5f6557

View File

@@ -17,6 +17,7 @@ package org.springframework.data.gemfire.repository.config;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@@ -37,6 +38,7 @@ import org.springframework.data.repository.query.QueryLookupStrategy.Key;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@Import(GemfireRepositoriesRegistrar.class)
public @interface EnableGemfireRepositories {