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