Merge automation from ECOMP's repository
[vid.git] / vid-automation / src / test / java / org / onap / vid / model / mso / RelationshipData.java
1 package org.onap.vid.model.mso;
2
3
4 public class RelationshipData {
5         public String getRelationshipKey() {
6                 return relationshipKey;
7         }
8         public void setRelationshipKey(String relationshipKey) {
9                 this.relationshipKey = relationshipKey;
10         }
11         public String getRelationshipValue() {
12                 return relationshipValue;
13         }
14         public void setRelationshipValue(String relationshipValue) {
15                 this.relationshipValue = relationshipValue;
16         }
17
18         public String relationshipKey;
19         
20         public String relationshipValue;
21
22 }