diff options
author | 2018-10-03 10:33:40 +0200 | |
---|---|---|
committer | 2018-10-03 13:23:36 +0200 | |
commit | de8e834e2bfc714e7a588f7470fe2ef7ba368275 (patch) | |
tree | 91c8f15bb5e4c5817a78c966da16a7717675b6c0 /hv-collector-domain/src/main/kotlin | |
parent | fd44b433ac9825be6cc654e8a566f9d0bfc70166 (diff) |
Change domain to lower case
Change-Id: I097def2ba720fafe0a1e1a88e87f8c03663627c9
Issue-ID: DCAEGEN2-847
Signed-off-by: Piotr Jaszczyk <piotr.jaszczyk@nokia.com>
Diffstat (limited to 'hv-collector-domain/src/main/kotlin')
-rw-r--r-- | hv-collector-domain/src/main/kotlin/org/onap/dcae/collectors/veshv/domain/VesEventDomain.kt | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/hv-collector-domain/src/main/kotlin/org/onap/dcae/collectors/veshv/domain/VesEventDomain.kt b/hv-collector-domain/src/main/kotlin/org/onap/dcae/collectors/veshv/domain/VesEventDomain.kt index 322260c6..0b18337d 100644 --- a/hv-collector-domain/src/main/kotlin/org/onap/dcae/collectors/veshv/domain/VesEventDomain.kt +++ b/hv-collector-domain/src/main/kotlin/org/onap/dcae/collectors/veshv/domain/VesEventDomain.kt @@ -19,17 +19,17 @@ */ package org.onap.dcae.collectors.veshv.domain -enum class VesEventDomain { - FAULT, - HEARTBEAT, - MEASUREMENT, - MOBILE_FLOW, - OTHER, - PNFREGISTRATION, - SIP_SIGNALING, - STATE_CHANGE, - SYSLOG, - THRESHOLD_CROSSING_ALERT, - VOICE_QUALITY, - PERF3GPP +enum class VesEventDomain(val domainName: String) { + FAULT("fault"), + HEARTBEAT("heartbeat"), + MEASUREMENT("measurement"), + MOBILE_FLOW("mobileFlow"), + OTHER("other"), + PNF_REGISTRATION("pnfRegistration"), + SIP_SIGNALING("sipSignaling"), + STATE_CHANGE("stateChange"), + SYSLOG("syslog"), + THRESHOLD_CROSSING_ALERT("thresholdCrossingAlert"), + VOICE_QUALITY("voiceQuality"), + PERF3GPP("perf3gpp"); } |