public static enum AsyncConfig.WireStyle extends java.lang.Enum<AsyncConfig.WireStyle>
Enum Constant and Description |
---|
CALLBACK
The wire style is callback meaning the container will create a replyTo with a unique EPR for the caller.
|
POLLING
The wire style is polling meaning that the container will create a replyTo with the WS-Polling holdit URI.
|
UNSPECIFIED
When the user does not care what happens over the wire to support asynchronous invocations they can set the wire style to unspecified.
|
Modifier and Type | Method and Description |
---|---|
static AsyncConfig.WireStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AsyncConfig.WireStyle[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final AsyncConfig.WireStyle UNSPECIFIED
public static final AsyncConfig.WireStyle CALLBACK
public static final AsyncConfig.WireStyle POLLING
public static AsyncConfig.WireStyle[] values()
for (AsyncConfig.WireStyle c : AsyncConfig.WireStyle.values()) System.out.println(c);
public static AsyncConfig.WireStyle 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 null