aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/test/java/org/opencomp/vid/model/mso/RelationshipData.java
blob: 4fdac42a098c543da57f5444367d32a830e2e3d5 (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
30
package org.opencomp.vid.model.mso;


import org.codehaus.jackson.annotate.JsonProperty;

public class RelationshipData {
	@JsonProperty("relationship-key")
	public String getRelationshipKey() {
		return relationshipKey;
	}
	@JsonProperty("relationship-key")
	public void setRelationshipKey(String relationshipKey) {
		this.relationshipKey = relationshipKey;
	}
	@JsonProperty("relationship-value")
	public String getRelationshipValue() {
		return relationshipValue;
	}
	@JsonProperty("relationship-value")
	public void setRelationshipValue(String relationshipValue) {
		this.relationshipValue = relationshipValue;
	}

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

}