aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/aai/model/RelationshipList.java
blob: f51fb9dfd6f3c1c082a9fc80af41a3caabbe258d (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
package org.onap.vid.aai.model;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

@JsonIgnoreProperties(ignoreUnknown = true)
public class RelationshipList {
	
	@JsonProperty("relationship")
	public List<Relationship> getRelationship() {
		return relationship;
	}
	
	@JsonProperty("relationship")
	public void setRelationship(List<Relationship> relationship) {
		this.relationship = relationship;
	}

	public List<Relationship> relationship;
	
	
	

}