aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/info/RelationshipData.java
blob: 2b01daecd407947b4985197ed4b3eb0ff6fbb7bb (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 RelationshipData {

    @JsonProperty("relationship-key")
    private String relationshipKey;

    @JsonProperty("relationship-value")
    private String relationshipValue;

    public void setRelationshipkey(String relationshipKey) {
        this.relationshipKey = relationshipKey;
    }

    public String getRelationshipKey() {
        return this.relationshipKey;
    }

    public void setRelationshipValue(String relationshipValue) {
        this.relationshipValue = relationshipValue;
    }

    public String getRelationshipValue() {
        return this.relationshipValue;
    }
}