Enum TransactionIntegration

java.lang.Object
java.lang.Enum<TransactionIntegration>
io.quarkiverse.messaginghub.pooled.jms.TransactionIntegration
All Implemented Interfaces:
Serializable, Comparable<TransactionIntegration>

public enum TransactionIntegration extends Enum<TransactionIntegration>
  • Enum Constant Details

    • ENABLED

      public static final TransactionIntegration ENABLED
      Integrate JMS Session with Quarkus TransactionManger and force transacted=true
    • XA

      public static final TransactionIntegration XA
      Integrate JMS Session with Quarkus TransactionManager and enable XA support and forcetransacted=false
    • DISABLED

      public static final TransactionIntegration DISABLED
      Disable integrate with Quarkus TransactionManager
  • Method Details

    • values

      public static TransactionIntegration[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static TransactionIntegration valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null