public static enum JmsSender.LinkMethod extends Enum<JmsSender.LinkMethod>
Enum Constant and Description |
---|
CORRELATIONID
set the correlationId of the pipeline as the correlationId of the message sent, and use that as the correlationId in the selector for response messages
|
CORRELATIONID_FROM_MESSAGE
do not automatically set the correlationId of the message sent, but use use the value found in that header after sending the message as the selector for response messages
|
MESSAGEID
use the generated messageId as the correlationId in the selector for response messages
|
Modifier and Type | Method and Description |
---|---|
static JmsSender.LinkMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JmsSender.LinkMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JmsSender.LinkMethod MESSAGEID
public static final JmsSender.LinkMethod CORRELATIONID
public static final JmsSender.LinkMethod CORRELATIONID_FROM_MESSAGE
public static JmsSender.LinkMethod[] values()
for (JmsSender.LinkMethod c : JmsSender.LinkMethod.values()) System.out.println(c);
public static JmsSender.LinkMethod 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 © 2023 Frank!Framework. All rights reserved.