summaryrefslogtreecommitdiffstats
path: root/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/datatypes/enums/CvfcTypeEnum.java
blob: ee9892cc98bd0bde2a1d4fe230c3af31e54cbc04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.openecomp.sdc.ci.tests.datatypes.enums;

public enum CvfcTypeEnum {

		SNMP_POLL ("SNMP_POLL"),
		SNMP_TRAP ("SNMP_TRAP"),
		VES_EVENTS ("VES_EVENTS");
		
		private String value;
	
		public String getValue() {
			return value;
		}
	
		private CvfcTypeEnum(String value) {
			this.value = value;
	}
		
}