@Target(value=FIELD) @Retention(value=RUNTIME) public @interface RelationshipMeta
@Type("my-type")
public class MyType {
@Id
private String id;
@Relationship("relationship")
private MyRelationship myRelationship;
@RelationshipMeta("relationship")
private MyRelationshipMeta myRelationshipMeta;
}
public abstract String value
Copyright © 2017. All rights reserved.