summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/dcae/ci/entities/sdc/SdcComponentInstance.java
blob: d3009088758d6dbab1145e920651045eefd323f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.onap.dcae.ci.entities.sdc;


public class SdcComponentInstance {

	String componentUid;
	String description;
	String posX;
	String posY;
	String name;
	String uniqueId;

	public SdcComponentInstance(SdcResource vf) {
		this.componentUid = vf.getUniqueId();
		this.posX = "20";
		this.posY = "20";
		this.name = vf.getName();
		this.description = vf.getDescription();
	}
}