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 }