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