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