Enum SubscriptionDebugLogInterceptor.EventCodeEnum
java.lang.Object
java.lang.Enum<SubscriptionDebugLogInterceptor.EventCodeEnum>
ca.uhn.fhir.jpa.subscription.util.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 ConstantDescriptionA new/updated resource has been submitted to the processing pipeline and is about to be placed on the matchign queue.A resources has been dequeued from the matching queue and is about to be checked for any matching subscriptions.The resource has matched a subscription (logged once for each matching subscription) and is about to be queued for delivery.The resource did not match any subscriptions and processing is complete.The resource has been dequeued from the delivery queue and is about to be delivered.Delivery failedDelivery is now complete and processing is finished. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SUBS1
A new/updated resource has been submitted to the processing pipeline and is about to be placed on the matchign queue. -
SUBS2
A resources has been dequeued from the matching queue and is about to be checked for any matching subscriptions. -
SUBS3
The resource has matched a subscription (logged once for each matching subscription) and is about to be queued for delivery. -
SUBS4
The resource did not match any subscriptions and processing is complete. -
SUBS5
The resource has been dequeued from the delivery queue and is about to be delivered. -
SUBS6
Delivery failed -
SUBS7
Delivery is now complete and processing is finished.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-