Enum SubscriptionDebugLogInterceptor.EventCodeEnum
- java.lang.Object
-
- java.lang.Enum<SubscriptionDebugLogInterceptor.EventCodeEnum>
-
- ca.uhn.fhir.jpa.subscription.module.interceptor.SubscriptionDebugLogInterceptor.EventCodeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<SubscriptionDebugLogInterceptor.EventCodeEnum>
- Enclosing class:
- SubscriptionDebugLogInterceptor
public static enum SubscriptionDebugLogInterceptor.EventCodeEnum extends Enum<SubscriptionDebugLogInterceptor.EventCodeEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SUBS1A new/updated resource has been submitted to the processing pipeline and is about to be placed on the matchign queue.SUBS2A resources has been dequeued from the matching queue and is about to be checked for any matching subscriptions.SUBS3The resource has matched a subscription (logged once for each matching subscription) and is about to be queued for delivery.SUBS4The resource did not match any subscriptions and processing is complete.SUBS5The resource has been dequeued from the delivery queue and is about to be delivered.SUBS6Delivery failedSUBS7Delivery is now complete and processing is finished.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SubscriptionDebugLogInterceptor.EventCodeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static SubscriptionDebugLogInterceptor.EventCodeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUBS1
public static final SubscriptionDebugLogInterceptor.EventCodeEnum SUBS1
A new/updated resource has been submitted to the processing pipeline and is about to be placed on the matchign queue.
-
SUBS2
public static final SubscriptionDebugLogInterceptor.EventCodeEnum SUBS2
A resources has been dequeued from the matching queue and is about to be checked for any matching subscriptions.
-
SUBS3
public static final SubscriptionDebugLogInterceptor.EventCodeEnum SUBS3
The resource has matched a subscription (logged once for each matching subscription) and is about to be queued for delivery.
-
SUBS4
public static final SubscriptionDebugLogInterceptor.EventCodeEnum SUBS4
The resource did not match any subscriptions and processing is complete.
-
SUBS5
public static final SubscriptionDebugLogInterceptor.EventCodeEnum SUBS5
The resource has been dequeued from the delivery queue and is about to be delivered.
-
SUBS6
public static final SubscriptionDebugLogInterceptor.EventCodeEnum SUBS6
Delivery failed
-
SUBS7
public static final SubscriptionDebugLogInterceptor.EventCodeEnum SUBS7
Delivery is now complete and processing is finished.
-
-
Method Detail
-
values
public static SubscriptionDebugLogInterceptor.EventCodeEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SubscriptionDebugLogInterceptor.EventCodeEnum c : SubscriptionDebugLogInterceptor.EventCodeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SubscriptionDebugLogInterceptor.EventCodeEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-