summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/dcae/ci/entities/composition/rightMenu/elements/Elements.java
blob: b5dad46abaecefb4b09d31dbe9c84e35c650336a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.onap.dcae.ci.entities.composition.rightMenu.elements;
import java.util.List;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class Elements {
	@SerializedName("elements")
	@Expose
	private List<Element> elements = null;

	public List<Element> getElements() {
	return elements;
	}

	public void setElements(List<Element> elements) {
	this.elements = elements;
	}
}