aboutsummaryrefslogtreecommitdiffstats
path: root/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/datatypes/enums/ServiceInstantiationType.java
blob: 80fa95b546557cb1c13b861d3133c8989ba5f652 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.openecomp.sdc.ci.tests.datatypes.enums;

public enum ServiceInstantiationType {
	A_LA_CARTE("A-la-carte"), MACRO("Macro");
	
	private String value;

	public String getValue() {
		return value;
	}

	private ServiceInstantiationType(String value) {
		this.value = value;
	}
}