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

public class ImportVFCMTRequest extends CreateVFCMTRequest {

	private boolean cloneVFCMT;

	private boolean updateFlowType;

	public boolean isCloneVFCMT() {
		return cloneVFCMT;
	}

	public void setCloneVFCMT(boolean cloneVFCMT) {
		this.cloneVFCMT = cloneVFCMT;
	}

	public boolean isUpdateFlowType() {
		return updateFlowType;
	}

	public void setUpdateFlowType(boolean updateFlowType) {
		this.updateFlowType = updateFlowType;
	}
}