public static enum CompositeHttpResponseInterceptor.ExecutionStrategy extends Enum<CompositeHttpResponseInterceptor.ExecutionStrategy>
ALL or ONLY_FIRST of the interceptors should be executed by this composition. If
ONLY_FIRST is selected the first interceptor that matches the condition is executed and next are skipped.
ALL every interceptor is executed and input is invoked with the output of the previous, if matching condition is
satisfied.| Enum Constant and Description |
|---|
ALL |
ONLY_FIRST |
| Modifier and Type | Method and Description |
|---|---|
static CompositeHttpResponseInterceptor.ExecutionStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompositeHttpResponseInterceptor.ExecutionStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompositeHttpResponseInterceptor.ExecutionStrategy ALL
public static final CompositeHttpResponseInterceptor.ExecutionStrategy ONLY_FIRST
public static CompositeHttpResponseInterceptor.ExecutionStrategy[] values()
for (CompositeHttpResponseInterceptor.ExecutionStrategy c : CompositeHttpResponseInterceptor.ExecutionStrategy.values()) System.out.println(c);
public static CompositeHttpResponseInterceptor.ExecutionStrategy valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022. All rights reserved.