aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/info/RelatedToProperty.java
blob: 5684c9b57feed1da73b9d11834c3dcf7855d0542 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package org.openecomp.sdc.be.info;

import com.fasterxml.jackson.annotation.JsonProperty;

public final class RelatedToProperty {

    @JsonProperty("property-key")
    private String propertyKey;

    @JsonProperty("property-value")
    private String propertyValue;

    public String getPropertyKey() {
        return propertyKey;
    }

    public void setPropertyKey(String propertyKey) {
        this.propertyKey = propertyKey;
    }

    public String getPropertyValue() {
        return propertyValue;
    }

    public void setPropertyValue(String propertyValue) {
        this.propertyValue = propertyValue;
    }
}