Spaces:
Build error
Build error
| 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 | |
| } |