1 package org.apache.geronimo.samples.bank.ejb; 2 3 import org.apache.geronimo.samples.bank.ejb.Account; 4 import org.apache.geronimo.samples.bank.ejb.ExchangeRate; 5 import org.apache.geronimo.samples.bank.ejb.Customer; 6 7 public interface BankManagerFacadeLocal { 8 public java.util.List<Account> getAccountInformation(String customerId); 9 10 public java.util.List<ExchangeRate> getExchangeRates(); 11 12 public Customer getCustomer(String customerCode); 13 14 public Double getAccountBalance(String accountNo); 15 }