Package org.apache.servicemix.sca.bigbank.accountdata

Examples of org.apache.servicemix.sca.bigbank.accountdata.CheckingAccount


      report.getAccountSummaries().add(getStockAccountSummary(customerID));
        return report;
    }
   
    private AccountSummary getCheckAccountSummary(String customerID) {
      CheckingAccount checking = accountDataService.getCheckingAccount(customerID);
      AccountSummary summary = new AccountSummary();
      summary.setAccountNumber(checking.getAccountNumber());
      summary.setAccountType("Checking");
      summary.setBalance(checking.getBalance());
      return summary;
    }
View Full Code Here


      report.getAccountSummaries().add(getStockAccountSummary(customerID));
        return report;
    }
   
    private AccountSummary getCheckAccountSummary(String customerID) {
      CheckingAccount checking = accountDataService.getCheckingAccount(customerID);
      AccountSummary summary = new AccountSummary();
      summary.setAccountNumber(checking.getAccountNumber());
      summary.setAccountType("Checking");
      summary.setBalance(checking.getBalance());
      return summary;
    }
View Full Code Here

TOP

Related Classes of org.apache.servicemix.sca.bigbank.accountdata.CheckingAccount

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.