org.onap migration
[vid.git] / vid-app-common / src / main / java / org / onap / vid / aai / model / Relationship.java
1 package org.onap.vid.aai.model;
2
3 import org.codehaus.jackson.annotate.JsonProperty;
4
5 import java.util.List;
6
7
8
9
10 public class Relationship {
11         
12         @JsonProperty("related-to")
13         public String relatedTo;
14         
15         @JsonProperty("related-link")
16         public String relatedLink;
17
18         @JsonProperty("relationship-label")
19         public String relationshipLabel;
20         
21         @JsonProperty("relationship-data")
22         public List<RelationshipData> relationshipData;
23         
24         @JsonProperty("related-to-property")
25         public List<RelatedToProperty> relatedToProperty;
26
27         
28         public String getRelatedTo() {
29                 return relatedTo;
30         }
31
32         public void setRelatedTo(String relatedTo) {
33                 this.relatedTo = relatedTo;
34         }
35
36         public String getRelatedLink() {
37                 return relatedLink;
38         }
39
40         public void setRelatedLink(String relatedLink) {
41                 this.relatedLink = relatedLink;
42         }
43
44         public List<RelationshipData> getRelationDataList() {
45                 return relationshipData;
46         }
47
48         public void setRelationDataList(List<RelationshipData> relationDataList) {
49                 this.relationshipData = relationDataList;
50         }
51
52         public List<RelatedToProperty> getRelatedToPropertyList() {
53                 return relatedToProperty;
54         }
55
56         public void setRelatedToPropertyList(List<RelatedToProperty> relatedToPropertyList) {
57                 this.relatedToProperty = relatedToPropertyList;
58         }
59
60         public String getRelationshipLabel() {
61                 return relationshipLabel;
62         }
63
64         public void setRelationshipLabel(String relationshipLabel) {
65                 this.relationshipLabel = relationshipLabel;
66         }
67 }