From dbe37a6d211d703044f77fe94427fb7617c55043 Mon Sep 17 00:00:00 2001 From: Thomas Risberg Date: Thu, 21 Oct 2010 14:21:51 -0400 Subject: [PATCH] moved @Indexed to data-commons --- .../datastore/annotation/Indexed.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 spring-data-commons-core/src/main/java/org/springframework/datastore/annotation/Indexed.java diff --git a/spring-data-commons-core/src/main/java/org/springframework/datastore/annotation/Indexed.java b/spring-data-commons-core/src/main/java/org/springframework/datastore/annotation/Indexed.java new file mode 100644 index 000000000..a692f122f --- /dev/null +++ b/spring-data-commons-core/src/main/java/org/springframework/datastore/annotation/Indexed.java @@ -0,0 +1,12 @@ +package org.springframework.datastore.annotation; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention(RetentionPolicy.RUNTIME) +@Target(ElementType.FIELD) +public @interface Indexed +{ +}