summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/sdc/dcae/composition/restmodels/Composition.java
blob: 9997f52438f80eaf3932f67468927e5f2f16ba09 (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
31
package org.onap.sdc.dcae.composition.restmodels;

import com.fasterxml.jackson.annotation.JsonProperty;

public class Composition {

	@JsonProperty("id")
	private String id;
	
	@JsonProperty("composition")
	private Composition composition;
	
	public String getId() {
		return id;
	}

	public void setId(String id) {
		this.id = id;
	}

	public Composition getComposition() {
		return composition;
	}

	public void setComposition(Composition composition) {
		this.composition = composition;
	}
	
	

}