Sync Integ to Master
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / info / RelationshipData.java
1 package org.openecomp.sdc.be.info;
2
3 import com.fasterxml.jackson.annotation.JsonProperty;
4
5 public final class RelationshipData {
6
7     @JsonProperty("relationship-key")
8     private String relationshipKey;
9
10     @JsonProperty("relationship-value")
11     private String relationshipValue;
12
13     public void setRelationshipkey(String relationshipKey) {
14         this.relationshipKey = relationshipKey;
15     }
16
17     public String getRelationshipKey() {
18         return this.relationshipKey;
19     }
20
21     public void setRelationshipValue(String relationshipValue) {
22         this.relationshipValue = relationshipValue;
23     }
24
25     public String getRelationshipValue() {
26         return this.relationshipValue;
27     }
28 }