Package org.frankframework.jms
Enum Class JmsSender.LinkMethod
- All Implemented Interfaces:
Serializable
,Comparable<JmsSender.LinkMethod>
,Constable
- Enclosing class:
- JmsSender
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionset the correlationId of the pipeline as the correlationId of the message sent, and use that as the correlationId in the selector for response messagesdo 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 messagesuse the generated messageId as the correlationId in the selector for response messages -
Method Summary
Modifier and TypeMethodDescriptionstatic JmsSender.LinkMethod
Returns the enum constant of this class with the specified name.static JmsSender.LinkMethod[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MESSAGEID
use the generated messageId as the correlationId in the selector for response messages -
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
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-