a2a98fc27ed975453983614df250d319222a2805
[vid.git] / vid-app-common / src / main / java / org / onap / vid / aai / model / RelatedToProperty.java
1 package org.onap.vid.aai.model;
2
3
4 import org.codehaus.jackson.annotate.JsonIgnoreProperties;
5 import org.codehaus.jackson.annotate.JsonProperty;
6
7 @JsonIgnoreProperties(ignoreUnknown = true)
8 public class RelatedToProperty {
9
10         public String getPropertyKey() {
11                 return propertyKey;
12         }
13
14
15         public void setPropertyKey(String propertyKey) {
16                 this.propertyKey = propertyKey;
17         }
18
19
20         public String getPropertyValue() {
21                 return propertyValue;
22         }
23
24
25         public void setPropertyValue(String propertyValue) {
26                 this.propertyValue = propertyValue;
27         }
28
29
30         @JsonProperty("property-key")
31         public String propertyKey;
32
33
34         @JsonProperty("property-value")
35         public String propertyValue;
36
37 }