Browse Source

moved @Indexed to data-commons

pull/2/head
Thomas Risberg 15 years ago
parent
commit
dbe37a6d21
  1. 12
      spring-data-commons-core/src/main/java/org/springframework/datastore/annotation/Indexed.java

12
spring-data-commons-core/src/main/java/org/springframework/datastore/annotation/Indexed.java

@ -0,0 +1,12 @@ @@ -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
{
}
Loading…
Cancel
Save