dalabai's picture
Upload folder using huggingface_hub
9373c61 verified
raw
history blame
413 Bytes
package com.dalab.policyengine.model;
public enum PolicyEvaluationStatus {
PASS, // Policy conditions met, actions may have been triggered
FAIL, // Policy conditions not met
ERROR, // Error during evaluation (e.g., bad rule syntax, fact unavailable)
PENDING, // Evaluation is queued or in progress
NOT_APPLICABLE // Policy was not applicable to the target asset
}