aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/openecomp/vid/aai/model/RelationshipData.java
blob: 21af2f5d6284e5b4582bbb164ccc28351d06e239 (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
29
package org.openecomp.vid.aai.model;

import org.codehaus.jackson.annotate.JsonProperty;

public class RelationshipData {
	
	public String getRelationshipKey() {
		return relationshipKey;
	}

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

	public String getRelationshipValue() {
		return relationshipValue;
	}

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

	@JsonProperty("relationship-key")
	public String relationshipKey;
	
	@JsonProperty("relationship-value")
	public String relationshipValue;

}