moved @Indexed to data-commons

This commit is contained in:
Thomas Risberg
2010-10-21 14:21:51 -04:00
parent 4011f2e7cf
commit dbe37a6d21

View File

@@ -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
{
}