Enum Class LogEventType
- All Implemented Interfaces:
Serializable
,Comparable<LogEventType>
,Constable
Kinds of
LogEvent
instances that Soklet can produce.- Author:
- Mark Allen
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicatesLifecycleInterceptor.didEstablishServerSentEventConnection(Request, ResourceMethod)
threw an exception.IndicatesLifecycleInterceptor.didFinishRequestHandling(Request, ResourceMethod, MarshaledResponse, Duration, List)
threw an exception.IndicatesLifecycleInterceptor.didFinishResponseWriting(Request, ResourceMethod, MarshaledResponse, Duration, Throwable)
threw an exception.IndicatesLifecycleInterceptor.didFinishServerSentEventWriting(Request, ResourceMethod, ServerSentEvent, Duration, Throwable)
threw an exception.IndicatesLifecycleInterceptor.didStartRequestHandling(Request, ResourceMethod)
threw an exception.IndicatesLifecycleInterceptor.didTerminateServerSentEventConnection(Request, ResourceMethod, Duration, Throwable)
threw an exception.IndicatesLifecycleInterceptor.interceptRequest(Request, ResourceMethod, Function, Consumer)
threw an exception.IndicatesLifecycleInterceptor.willEstablishServerSentEventConnection(Request, ResourceMethod)
threw an exception.IndicatesLifecycleInterceptor.willStartResponseWriting(Request, ResourceMethod, MarshaledResponse)
threw an exception.IndicatesLifecycleInterceptor.willStartServerSentEventWriting(Request, ResourceMethod, ServerSentEvent)
threw an exception.IndicatesLifecycleInterceptor.willTerminateServerSentEventConnection(Request, ResourceMethod, Throwable)
threw an exception.IndicatesLifecycleInterceptor.wrapRequest(Request, ResourceMethod, Consumer)
threw an exception.Indicates that an exception was thrown during core request processing operations.Indicates Resource Method resolution via (ResourceMethodResolver.resourceMethodForRequest(Request)
threw an exception.IndicatesResponseMarshaler.forThrowable(Request, Throwable, ResourceMethod)
threw an exception.Indicates an internalServer
error occurred.Indicates an internalServerSentEventServer
error occurred. -
Method Summary
Modifier and TypeMethodDescriptionstatic LogEventType
Returns the enum constant of this class with the specified name.static LogEventType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
REQUEST_PROCESSING_FAILED
Indicates that an exception was thrown during core request processing operations. -
LIFECYCLE_INTERCEPTOR_WRAP_REQUEST_FAILED
IndicatesLifecycleInterceptor.wrapRequest(Request, ResourceMethod, Consumer)
threw an exception. -
LIFECYCLE_INTERCEPTOR_INTERCEPT_REQUEST_FAILED
IndicatesLifecycleInterceptor.interceptRequest(Request, ResourceMethod, Function, Consumer)
threw an exception. -
LIFECYCLE_INTERCEPTOR_DID_START_REQUEST_HANDLING_FAILED
IndicatesLifecycleInterceptor.didStartRequestHandling(Request, ResourceMethod)
threw an exception. -
LIFECYCLE_INTERCEPTOR_DID_FINISH_REQUEST_HANDLING_FAILED
IndicatesLifecycleInterceptor.didFinishRequestHandling(Request, ResourceMethod, MarshaledResponse, Duration, List)
threw an exception. -
LIFECYCLE_INTERCEPTOR_WILL_START_RESPONSE_WRITING_FAILED
IndicatesLifecycleInterceptor.willStartResponseWriting(Request, ResourceMethod, MarshaledResponse)
threw an exception. -
LIFECYCLE_INTERCEPTOR_DID_FINISH_RESPONSE_WRITING_FAILED
IndicatesLifecycleInterceptor.didFinishResponseWriting(Request, ResourceMethod, MarshaledResponse, Duration, Throwable)
threw an exception. -
LIFECYCLE_INTERCEPTOR_WILL_ESTABLISH_SERVER_SENT_EVENT_CONNECTION_FAILED
public static final LogEventType LIFECYCLE_INTERCEPTOR_WILL_ESTABLISH_SERVER_SENT_EVENT_CONNECTION_FAILEDIndicatesLifecycleInterceptor.willEstablishServerSentEventConnection(Request, ResourceMethod)
threw an exception. -
LIFECYCLE_INTERCEPTOR_DID_ESTABLISH_SERVER_SENT_EVENT_CONNECTION_FAILED
public static final LogEventType LIFECYCLE_INTERCEPTOR_DID_ESTABLISH_SERVER_SENT_EVENT_CONNECTION_FAILEDIndicatesLifecycleInterceptor.didEstablishServerSentEventConnection(Request, ResourceMethod)
threw an exception. -
LIFECYCLE_INTERCEPTOR_WILL_TERMINATE_SERVER_SENT_EVENT_CONNECTION_FAILED
public static final LogEventType LIFECYCLE_INTERCEPTOR_WILL_TERMINATE_SERVER_SENT_EVENT_CONNECTION_FAILEDIndicatesLifecycleInterceptor.willTerminateServerSentEventConnection(Request, ResourceMethod, Throwable)
threw an exception. -
LIFECYCLE_INTERCEPTOR_DID_TERMINATE_SERVER_SENT_EVENT_CONNECTION_FAILED
public static final LogEventType LIFECYCLE_INTERCEPTOR_DID_TERMINATE_SERVER_SENT_EVENT_CONNECTION_FAILEDIndicatesLifecycleInterceptor.didTerminateServerSentEventConnection(Request, ResourceMethod, Duration, Throwable)
threw an exception. -
LIFECYCLE_INTERCEPTOR_WILL_START_SERVER_SENT_EVENT_WRITING_FAILED
IndicatesLifecycleInterceptor.willStartServerSentEventWriting(Request, ResourceMethod, ServerSentEvent)
threw an exception. -
LIFECYCLE_INTERCEPTOR_DID_FINISH_SERVER_SENT_EVENT_WRITING_FAILED
IndicatesLifecycleInterceptor.didFinishServerSentEventWriting(Request, ResourceMethod, ServerSentEvent, Duration, Throwable)
threw an exception. -
RESPONSE_MARSHALER_FOR_THROWABLE_FAILED
IndicatesResponseMarshaler.forThrowable(Request, Throwable, ResourceMethod)
threw an exception. -
RESOURCE_METHOD_RESOLUTION_FAILED
Indicates Resource Method resolution via (ResourceMethodResolver.resourceMethodForRequest(Request)
threw an exception. -
SERVER_INTERNAL_ERROR
Indicates an internalServer
error occurred. -
SERVER_SENT_EVENT_SERVER_INTERNAL_ERROR
Indicates an internalServerSentEventServer
error occurred.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-