Enum Class DefaultTransactionStatuses

java.lang.Object
java.lang.Enum<DefaultTransactionStatuses>
com.broadleafcommerce.paymenttransaction.domain.enums.DefaultTransactionStatuses
All Implemented Interfaces:
TransactionStatus, Serializable, Comparable<DefaultTransactionStatuses>, Constable

public enum DefaultTransactionStatuses extends Enum<DefaultTransactionStatuses> implements TransactionStatus
  • Enum Constant Details

    • SENDING_TO_PROCESSOR

      public static final DefaultTransactionStatuses SENDING_TO_PROCESSOR
      The payment gateway call is being prepared, or has been made and we don't know the response yet. Transactions can remain in this status if the application restarts or if we encounter an unexpected network failure.
    • SUCCESS

      public static final DefaultTransactionStatuses SUCCESS
      The transaction was successfully processed by the payment gateway.
    • AWAITING_ASYNC_RESULTS

      public static final DefaultTransactionStatuses AWAITING_ASYNC_RESULTS
      The transaction request was successfully queued by the gateway, but transaction results will be communicated asynchronously.
    • FAILURE

      public static final DefaultTransactionStatuses FAILURE
      The payment gateway failed to successfully process the transaction. This primarily represents a declined payment.
    • EXPIRED

      public static final DefaultTransactionStatuses EXPIRED
      The transaction was successfully processed, but has since expired. The most common use case for this status is the expiration of a successful authorization transaction.
  • Method Details

    • values

      public static DefaultTransactionStatuses[] 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 DefaultTransactionStatuses 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
    • isSendingToProcessor

      public static boolean isSendingToProcessor(String transactionStatus)
    • isSuccess

      public static boolean isSuccess(String transactionStatus)
    • isAwaitingAsyncResults

      public static boolean isAwaitingAsyncResults(String transactionStatus)
    • isFailure

      public static boolean isFailure(String transactionStatus)
    • isExpired

      public static boolean isExpired(String transactionStatus)