Annotation Type RelationshipMeta


  • @Target(FIELD)
    @Retention(RUNTIME)
    public @interface RelationshipMeta
    Relationship meta annotation. This annotation is used in conjunction with @Relationship annotation, attribute annotated with this annotation is considered to be meta-data related to named relationship object.
     
         @Type("my-type")
         public class MyType {
               @Id
             private String id;
    
             @Relationship("relationship")
             private MyRelationship myRelationship;
    
             @RelationshipMeta("relationship")
             private MyRelationshipMeta myRelationshipMeta;
    
         }
     
     
    Author:
    jbegic
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      String value