public enum LateResponseStrategy extends java.lang.Enum<LateResponseStrategy>
| Enum Constant and Description |
|---|
error
Terminate the exchange with an ERROR status and log an exception for the late response
|
warning
End the exchange with a DONE status and log a warning for the late response
|
| Modifier and Type | Method and Description |
|---|---|
static LateResponseStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LateResponseStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LateResponseStrategy error
public static final LateResponseStrategy warning
public static LateResponseStrategy[] values()
for (LateResponseStrategy c : LateResponseStrategy.values()) System.out.println(c);
public static LateResponseStrategy valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2005-2014 FuseSource. All Rights Reserved.