Package epayment.response

Examples of epayment.response.PaymentResponse


   * @throws PaymentException If an error occurs.
   */
  public IPaymentResponse authorize(IPaymentRequest request)
    throws PaymentException {
   
    PaymentResponse response = new PaymentResponse();
   
    //
    // Adapt the request information to the
    // vendor-specific proxy API.
    //
View Full Code Here


  public IPaymentResponse capture(IPaymentRequest request)
    throws PaymentException {
   
    // similar to authorize()
   
    return new PaymentResponse();
  }
View Full Code Here

  public IPaymentResponse sale(IPaymentRequest request)
    throws PaymentException {
   
    // similar to authorize()
   
    return new PaymentResponse();
  }
View Full Code Here

  public IPaymentResponse credit(IPaymentRequest request)
    throws PaymentException {
   
    // similar to authorize()
   
    return new PaymentResponse();
  }
View Full Code Here

  public IPaymentResponse voidSale(IPaymentRequest request)
    throws PaymentException {
   
    // similar to authorize()
   
    return new PaymentResponse();
  }
View Full Code Here

   * @throws PaymentException If an error occurs.
   */
  public IPaymentResponse authorize(IPaymentRequest request)
    throws PaymentException {
   
    PaymentResponse response = new PaymentResponse();
   
    //
    // Adapt the request information to the
    // vendor-specific proxy API.
    //
View Full Code Here

  public IPaymentResponse capture(IPaymentRequest request)
    throws PaymentException {
   
    // similar to authorize()
   
    return new PaymentResponse();
  }
View Full Code Here

  public IPaymentResponse sale(IPaymentRequest request)
    throws PaymentException {
   
    // similar to authorize()
   
    return new PaymentResponse();
  }
View Full Code Here

  public IPaymentResponse credit(IPaymentRequest request)
    throws PaymentException {
   
    // similar to authorize()
   
    return new PaymentResponse();
  }
View Full Code Here

  public IPaymentResponse voidSale(IPaymentRequest request)
    throws PaymentException {
   
    // similar to authorize()
   
    return new PaymentResponse();
  }
View Full Code Here

TOP

Related Classes of epayment.response.PaymentResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.