Enum Class JmsSender.LinkMethod

java.lang.Object
java.lang.Enum<JmsSender.LinkMethod>
org.frankframework.jms.JmsSender.LinkMethod
All Implemented Interfaces:
Serializable, Comparable<JmsSender.LinkMethod>, Constable
Enclosing class:
JmsSender

public static enum JmsSender.LinkMethod extends Enum<JmsSender.LinkMethod>
  • Enum Constant Details

    • MESSAGEID

      public static final JmsSender.LinkMethod MESSAGEID
      use the generated messageId as the correlationId in the selector for response messages
    • CORRELATIONID

      public static final JmsSender.LinkMethod 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

      public static final JmsSender.LinkMethod 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

      public static JmsSender.LinkMethod[] 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

      public static JmsSender.LinkMethod valueOf(String name)
      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 name
      NullPointerException - if the argument is null