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