moved @Indexed to data-commons

This commit is contained in:
Thomas Risberg
2010-10-21 14:22:30 -04:00
parent 41c60c929e
commit ae5d0c5d38
4 changed files with 3 additions and 13 deletions

View File

@@ -1,12 +0,0 @@
package org.springframework.datastore.graph.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
{
}

View File

@@ -19,8 +19,8 @@ package org.springframework.datastore.graph.neo4j.fieldaccess;
import org.neo4j.index.IndexService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Configurable;
import org.springframework.datastore.annotation.Indexed;
import org.springframework.datastore.graph.annotation.GraphProperty;
import org.springframework.datastore.graph.annotation.Indexed;
import org.springframework.datastore.graph.annotation.NodeEntity;
import org.springframework.datastore.graph.api.NodeBacked;

View File

@@ -1,5 +1,6 @@
package org.springframework.datastore.graph.neo4j;
import org.springframework.datastore.annotation.Indexed;
import org.springframework.datastore.graph.annotation.*;
import org.springframework.datastore.graph.api.Direction;

View File

@@ -14,6 +14,7 @@ Import-Template:
org.springframework.util.*;version="[3.0.0, 4.0.0)",
org.springframework.data.core.*;version="[1.0.0, 2.0.0)",
org.springframework.datastore.core.*;version="[1.0.0, 2.0.0)",
org.springframework.datastore.annotation.*;version="[1.0.0, 2.0.0)",
org.springframework.persistence.*;version="[1.0.0, 2.0.0)",
org.neo4j.*;version="0",
org.aspectj.*;version="[1.6.5, 2.0.0)",