Enum DefaultTransactionFailureTypes

    • Enum Constant Detail

      • GATEWAY_CREDENTIALS_ERROR

        public static final DefaultTransactionFailureTypes GATEWAY_CREDENTIALS_ERROR
        The provided payment gateway credentials are not valid
      • GATEWAY_CONFIGURATION_ERROR

        public static final DefaultTransactionFailureTypes GATEWAY_CONFIGURATION_ERROR
        The gateway is incorrectly configured or is not configured to handle the attempted type of request
      • INVALID_REQUEST

        public static final DefaultTransactionFailureTypes INVALID_REQUEST
        There was a failure to process the request because the request itself is invalid.
      • INVALID_PAYMENT_METHOD

        public static final DefaultTransactionFailureTypes INVALID_PAYMENT_METHOD
        The provided payment method data is invalid. This could be an incorrect card number, expiration date, etc.
      • PROCESSING_FAILURE

        public static final DefaultTransactionFailureTypes PROCESSING_FAILURE
        The payment gateway failed to successfully process the transaction. This primarily represents a declined payment.
      • REQUIRES_3DS_VERIFICATION

        public static final DefaultTransactionFailureTypes REQUIRES_3DS_VERIFICATION
        Additional verification is required from the customer for the gateway to successfully process the transaction
      • REQUIRES_ADDITIONAL_ACTION

        public static final DefaultTransactionFailureTypes REQUIRES_ADDITIONAL_ACTION
        Additional action is required for the transaction to be successfully processed
      • NETWORK_ERROR

        public static final DefaultTransactionFailureTypes NETWORK_ERROR
        There was an error in communicating with the payment gateway. This can correlate to a known network failure/timeout or connection issue.
      • RESPONSE_VALIDATION_FAILURE

        public static final DefaultTransactionFailureTypes RESPONSE_VALIDATION_FAILURE
        There was an error when checking the validity of the response. Therefore, we're unsure if we can trust the contents of the response. In this case, it's best to treat the transaction as a failure and investigate it offline.
      • API_RATE_LIMIT_ERROR

        public static final DefaultTransactionFailureTypes API_RATE_LIMIT_ERROR
        An error that occurs when too many requests hit the gateway's API too quickly
      • INTERNAL_ERROR

        public static final DefaultTransactionFailureTypes INTERNAL_ERROR
        There was an error in our preparation of the gateway interaction or in our interpretation/storing of the response.
    • Method Detail

      • values

        public static DefaultTransactionFailureTypes[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (DefaultTransactionFailureTypes c : DefaultTransactionFailureTypes.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DefaultTransactionFailureTypes 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
      • isGatewayCredentialsError

        public static boolean isGatewayCredentialsError​(String failureType)
      • isGatewayConfigurationError

        public static boolean isGatewayConfigurationError​(String failureType)
      • isInvalidRequest

        public static boolean isInvalidRequest​(String failureType)
      • isInvalidPaymentMethod

        public static boolean isInvalidPaymentMethod​(String failureType)
      • isProcessingFailure

        public static boolean isProcessingFailure​(String failureType)
      • isRequires3DSVerification

        public static boolean isRequires3DSVerification​(String failureType)
      • isRequiresAdditionalAction

        public static boolean isRequiresAdditionalAction​(String failureType)
      • isGatewayError

        public static boolean isGatewayError​(String failureType)
      • isNetworkError

        public static boolean isNetworkError​(String failureType)
      • isResponseValidationFailure

        public static boolean isResponseValidationFailure​(String failureType)
      • isAPIRateLimitError

        public static boolean isAPIRateLimitError​(String failureType)
      • isInternalError

        public static boolean isInternalError​(String failureType)