public enum SouthBoundChunkedSetting extends Enum<SouthBoundChunkedSetting>
Enum Constant and Description |
---|
ForceChunk
Force the southbound callout to "Transfer-Encoding: chunked" mode
regardless the type of incoming request.
|
ForceNoChunk
Force the southbound callout to"Content-Length" mode regardless the
type of incoming request.
|
PassThrough
Make no change on incoming request, what comes in what comes out.
|
Modifier and Type | Field and Description |
---|---|
static String |
CHUNKED_HEADER
The chunked header name.
|
Modifier and Type | Method and Description |
---|---|
static String |
getValidSetting(String value)
Validate the SouthBoundChunkedSetting input and return a valid value.
|
static SouthBoundChunkedSetting |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SouthBoundChunkedSetting[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SouthBoundChunkedSetting PassThrough
public static final SouthBoundChunkedSetting ForceChunk
public static final SouthBoundChunkedSetting ForceNoChunk
public static final String CHUNKED_HEADER
public static SouthBoundChunkedSetting[] values()
for (SouthBoundChunkedSetting c : SouthBoundChunkedSetting.values()) System.out.println(c);
public static SouthBoundChunkedSetting 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 null