diff --git a/src/main/java/org/springframework/data/keyvalue/annotation/KeySpace.java b/src/main/java/org/springframework/data/keyvalue/annotation/KeySpace.java index deadaf7..7d97be8 100644 --- a/src/main/java/org/springframework/data/keyvalue/annotation/KeySpace.java +++ b/src/main/java/org/springframework/data/keyvalue/annotation/KeySpace.java @@ -29,33 +29,29 @@ import org.springframework.data.annotation.Persistent; * entity should reside in. If present the value will be picked up for resolving the keyspace. The {@link #value()} * attribute supports SpEL expressions to dynamically resolve the keyspace based on a per-operation basis. * - *
- *
+ *
* @Persistent
* @Retention(RetentionPolicy.RUNTIME)
* @Target({ ElementType.TYPE })
* static @interface CacheCentricAnnotation {
*
- * @AliasFor(annotation = KeySpace.class, attribute = "value")
- * String cacheRegion() default "";
+ * @AliasFor(annotation = KeySpace.class, attribute = "value")
+ * String cacheRegion() default "";
* }
*
* @CacheCentricAnnotation(cacheRegion = "customers")
* class Customer {
- * //...
+ * // ...
* }
- *
*
*
* Can also be directly used on types to indicate the keyspace.
*
- *
- *
+ *
* @KeySpace("persons")
* public class Foo {
*
* }
- *
*
*
* @author Christoph Strobl