Class PayflowProProcessor

All Implemented Interfaces:
BusinessObject, BusinessProcessor, PaymentProcessor

public class PayflowProProcessor extends BasePayPalNVPProcessor implements PaymentProcessor
Processes a payment in the store for a given user's cart. This implementation processes a request through PayPal Payflow Pro. The process(Map) method manages the process of sending a request to Payflow Pro, and handling the response appropriately. It follows these steps:
  1. Figures out the transaction type (sale, authorize, authorize/authenticate, or authorize/authenticate/sale) from the database settings and the user's current state.
  2. Builds the request to Payflow Pro as a Map, taking as input the current user's state, and various database settings.
  3. Converts the request into a url-encoded query string to pass as Payflow Pro's "parmlist" parameter.
  4. Initializes the connection to Payflow Pro and sends the request.
  5. Handles any errors by setting "resultCode" appropriately in the Map that is returned. If no response comes back from Payflow Pro, a result code 10000 is used. If the Payflow Pro result code is not 0, which also indicates an error, that code is used as this method's "resultCode" and this method returns it.
  6. If a successful response is received, checks if the transaction type for the user is AA or AAS (authorize/authenticate, or authorize/authenticate/sale), in which the response must be "authenticated". This means the AVS and CSC responses are checked against what's defined as acceptable in the Payflow Pro Advanced Settings in the administrator. Note that if no CSC response is present, it is set to "X".
  7. If the user is not deemed authenticated, a "resultCode" of 10001 is returned.
  8. If the user is authenticated and the transaction type in effect is AAS (authorize/authenticate/sale), an immediate delayed capture on the previous authorization is performed, using the same parameters. Any errors from this second request are handled in the same way as above.
  9. Assuming the transaction succeeds, a new record is written to the sscPayment database table and a resultCode of 0 is returned.
Author:
David Tobey
See Also:
  • Field Details

    • log

      static org.apache.commons.logging.Log log
  • Constructor Details

    • PayflowProProcessor

      public PayflowProProcessor()
  • Method Details