dalabai's picture
Upload folder using huggingface_hub
9373c61 verified
raw
history blame
584 Bytes
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
}