File size: 413 Bytes
9373c61
 
 
 
 
 
 
 
5cfe5c4
1
2
3
4
5
6
7
8
9
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
}