aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/CmResponse.java
blob: 70e09d83c4dad6f940ac0f97c0267970a6191f7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.openecomp.vid.changeManagement;

public class CmResponse {
	
	public String orchestratorRequestId;
	public String serviceInstanceId;
	public String vnfInstanceId;
	public String vnfName;
	
	public CmResponse(String vnfName){
		this.orchestratorRequestId = "Request Id";
		this.serviceInstanceId = "Service instance Id";
		this.vnfInstanceId = "Vnf instance Id";
		this.vnfName = vnfName;
	}

}