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