public enum EMessagingOperation extends Enum<EMessagingOperation>
| Enum Constant and Description |
|---|
DELIVER
This operation makes data of a previously received (via Receive operation)
ebMS User Message Unit available to the Consumer.
|
NOTIFY
This operation notifies either a Producer or a Consumer about the status of
a previously submitted or received ebMS User Message Unit, or about general
MSH status.
|
RECEIVE
This operation completes the transfer of an ebMS user message from the
Sending MSH to the Receiving MSH.
|
SEND
This operation initiates the transfer of an ebMS user message from the
Sending MSH to the Receiving MSH, after all headers intended for the
Receiving MSH have been added (including security and/or reliability, as
required).
|
SUBMIT
This operation transfers enough data from the producer to the Sending MSH
to generate an ebMS User Message Unit.
|
| Modifier and Type | Method and Description |
|---|---|
static EMessagingOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EMessagingOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EMessagingOperation SUBMIT
public static final EMessagingOperation DELIVER
public static final EMessagingOperation NOTIFY
public static final EMessagingOperation SEND
public static final EMessagingOperation RECEIVE
public static EMessagingOperation[] values()
for (EMessagingOperation c : EMessagingOperation.values()) System.out.println(c);
public static EMessagingOperation 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 © 2015–2020 Philip Helger. All rights reserved.