Package com.jimbob.ach

Examples of com.jimbob.ach.AchResponse


  public void setBankAccountType(Account.BankAccountType bankAccountType) {
    this.bankAccountType = bankAccountType;
  }
 
  public void transferFromBank(BigDecimal amount) {
    AchResponse achResponse = getAch().issueDebit(createCredentials(), createData(amount));
    if(achResponse.status == AchStatus.SUCCESS)
      credit(amount);
  }
View Full Code Here

TOP

Related Classes of com.jimbob.ach.AchResponse

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.