4153665145e507abe654ebc6ac8d002157554deb
[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 org.codehaus.jackson.annotate.JsonIgnoreProperties;
4 import org.codehaus.jackson.annotate.JsonProperty;
5
6 @JsonIgnoreProperties(ignoreUnknown = true)
7 public class RelationshipData {
8         @JsonProperty("relationship-key")
9         public String getRelationshipKey() {
10                 return relationshipKey;
11         }
12         @JsonProperty("relationship-key")
13         public void setRelationshipKey(String relationshipKey) {
14                 this.relationshipKey = relationshipKey;
15         }
16         @JsonProperty("relationship-value")
17         public String getRelationshipValue() {
18                 return relationshipValue;
19         }
20         @JsonProperty("relationship-value")
21         public void setRelationshipValue(String relationshipValue) {
22                 this.relationshipValue = relationshipValue;
23         }
24
25         public String relationshipKey;
26         
27         public String relationshipValue;
28
29 }