Enum Class SubscriptionEvent

java.lang.Object
java.lang.Enum<SubscriptionEvent>
com.sas.lsaf.messaging.subscription.SubscriptionEvent
All Implemented Interfaces:
Serializable, Comparable<SubscriptionEvent>, Constable

public enum SubscriptionEvent extends Enum<SubscriptionEvent>
The values for the events for which subscriptions can be created.
  • Enum Constant Details

    • JOB_START_EVENT

      public static final SubscriptionEvent JOB_START_EVENT
      Event when a job submission is initiated.
    • JOB_FAILED_EVENT

      public static final SubscriptionEvent JOB_FAILED_EVENT
      Event when a job submission fails. This includes job failures and program errors.
    • SCHEDULED_JOB_START_EVENT

      public static final SubscriptionEvent SCHEDULED_JOB_START_EVENT
      Event when a job submission is initiated by the scheduler.
    • LOCK_EVENT

      public static final SubscriptionEvent LOCK_EVENT
      Event when a repository file is locked.
    • UNLOCK_EVENT

      public static final SubscriptionEvent UNLOCK_EVENT
      Event when a repository file is unlocked.
    • SIGN_EVENT

      public static final SubscriptionEvent SIGN_EVENT
      Event when a repository file is signed.
  • Method Details

    • values

      public static SubscriptionEvent[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static SubscriptionEvent valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null