From ff2f593dd6f0f069f7b4e14c7977b9b146cfb23f Mon Sep 17 00:00:00 2001 From: Michael Hunger Date: Wed, 9 Mar 2011 23:01:07 +0000 Subject: [PATCH] moved indexed --- .../data/annotation/Indexed.java | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 spring-data-commons-core/src/main/java/org/springframework/data/annotation/Indexed.java diff --git a/spring-data-commons-core/src/main/java/org/springframework/data/annotation/Indexed.java b/spring-data-commons-core/src/main/java/org/springframework/data/annotation/Indexed.java deleted file mode 100644 index 0937fd6fa..000000000 --- a/spring-data-commons-core/src/main/java/org/springframework/data/annotation/Indexed.java +++ /dev/null @@ -1,19 +0,0 @@ -package org.springframework.data.annotation; - -import java.lang.annotation.ElementType; -import java.lang.annotation.Retention; -import java.lang.annotation.RetentionPolicy; -import java.lang.annotation.Target; - -/** - * Annotated fields and entities will be indexed and available for retrieval using an indexing API. - */ -@Retention(RetentionPolicy.RUNTIME) -@Target( value = {ElementType.FIELD,ElementType.TYPE}) -public @interface Indexed -{ - /** - * Name of the index to use. - */ - String indexName() default ""; -}