DispatcherType

Enumeration of filter dispatcher types, identical to jakarta.servlet.DispatcherType and used in configuration as the servlet API may not be present.

Author

Stephane Nicoll

Since

2.0.0

Entries

Link copied to clipboard

Apply the filter on "RequestDispatcher.forward()" calls.

Link copied to clipboard

Apply the filter on "RequestDispatcher.include()" calls.

Link copied to clipboard

Apply the filter on ordinary client calls.

Link copied to clipboard

Apply the filter under calls dispatched from an AsyncContext.

Link copied to clipboard

Apply the filter when an error is handled.

Functions

Link copied to clipboard
open fun valueOf(name: String): DispatcherType

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.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.