package com.dalab.policyengine.model; /** * Enumeration representing the severity levels of events in the DALab platform. */ public enum EventSeverity { /** * Critical severity - immediate attention required */ CRITICAL, /** * High severity - urgent attention required */ HIGH, /** * Medium severity - attention required */ MEDIUM, /** * Low severity - informational */ LOW, /** * Informational - for logging and tracking purposes */ INFO }