Package com.mes.sdk.core

Examples of com.mes.sdk.core.Http


  /**
   * The main object used to communicate with the Payment Gateway.
   * @param settings An instance of {@link RbsSettings}.
   */
  public Rbs(RbsSettings settings) {
    http = new Http(settings);
    this.settings = settings;
  }
View Full Code Here


  /**
   * The main object used to communicate with the Payment Gateway.
   * @param settings An instance of {@link GatewaySettings}.
   */
  public Gateway(GatewaySettings settings) {
    http = new Http(settings);
    this.settings = settings;
  }
View Full Code Here

  /**
   * The main object used to communicate.
   * @param settings An instance of {@link ReportingSettings}.
   */
  public Reporting(ReportingSettings settings) {
    http = new Http(settings);
    this.settings = settings;
  }
View Full Code Here

TOP

Related Classes of com.mes.sdk.core.Http

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.