Spaces:
Build error
Build error
da-policyengine-dev
/
src
/main
/java
/com
/dalab
/policyengine
/model
/EventSubscriptionStatus.java
| package com.dalab.policyengine.model; | |
| /** | |
| * Enumeration representing the status of an event subscription. | |
| */ | |
| public enum EventSubscriptionStatus { | |
| /** | |
| * Subscription is active and receiving events | |
| */ | |
| ACTIVE, | |
| /** | |
| * Subscription is temporarily paused | |
| */ | |
| PAUSED, | |
| /** | |
| * Subscription is disabled and not receiving events | |
| */ | |
| DISABLED, | |
| /** | |
| * Subscription has been archived | |
| */ | |
| ARCHIVED | |
| } |