org.onap migration
[vid.git] / vid-app-common / src / main / java / org / onap / vid / aai / model / RelationshipData.java
1 package org.onap.vid.aai.model;
2
3
4 import org.codehaus.jackson.annotate.JsonProperty;
5
6 public class RelationshipData {
7         @JsonProperty("relationship-key")
8         public String getRelationshipKey() {
9                 return relationshipKey;
10         }
11         @JsonProperty("relationship-key")
12         public void setRelationshipKey(String relationshipKey) {
13                 this.relationshipKey = relationshipKey;
14         }
15         @JsonProperty("relationship-value")
16         public String getRelationshipValue() {
17                 return relationshipValue;
18         }
19         @JsonProperty("relationship-value")
20         public void setRelationshipValue(String relationshipValue) {
21                 this.relationshipValue = relationshipValue;
22         }
23
24         @JsonProperty("relationship-key")
25         public String relationshipKey;
26         
27         @JsonProperty("relationship-value")
28         public String relationshipValue;
29
30 }