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

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


      summary.setBalance(savings.getBalance());
      return summary;
    }

    private AccountSummary getStockAccountSummary(String customerID) {
      StockAccount stock = accountDataService.getStockAccount(customerID);
      AccountSummary summary = new AccountSummary();
      summary.setAccountNumber(stock.getAccountNumber());
      summary.setAccountType("Stock");
      float quote = getQuote(stock.getSymbol());
      summary.setBalance(quote * stock.getQuantity());
      return summary;
    }
View Full Code Here


      summary.setBalance(savings.getBalance());
      return summary;
    }

    private AccountSummary getStockAccountSummary(String customerID) {
      StockAccount stock = accountDataService.getStockAccount(customerID);
      AccountSummary summary = new AccountSummary();
      summary.setAccountNumber(stock.getAccountNumber());
      summary.setAccountType("Stock");
      float quote = getQuote(stock.getSymbol());
      summary.setBalance(quote * stock.getQuantity());
      return summary;
    }
View Full Code Here

TOP

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

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.