fixed osgi dependency issue, removed deprecated types

This commit is contained in:
Michael Hunger
2010-08-26 10:43:05 +02:00
parent a732b765ba
commit c5ac97c872
3 changed files with 1 additions and 24 deletions

View File

@@ -1,17 +0,0 @@
package org.springframework.persistence.graph;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation to denote an object that should be transparently persisted
* using Neo4j.
* @author Rod Johnson
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface GraphEntity {
Type value() default Type.NODE;
}

View File

@@ -1,6 +0,0 @@
/**
*
*/
package org.springframework.persistence.graph;
public enum Type { NODE, RELATIONSHIP }

View File

@@ -12,7 +12,7 @@ Import-Template:
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.persistence.*;version="[1.0.0, 2.0.0)",
org.neo4j.*;version="[1.1.0, 2.0.0)",
org.neo4j.*;version="0",
org.aspectj.*;version="[1.6.5, 2.0.0)",
org.apache.commons.logging.*;version="[1.1.1, 2.0.0)"