001    package org.apache.geronimo.samples.bank.ejb;
002    
003    import org.apache.geronimo.samples.bank.ejb.Account;
004    import org.apache.geronimo.samples.bank.ejb.ExchangeRate;
005    import org.apache.geronimo.samples.bank.ejb.Customer;
006    
007    public interface BankManagerFacadeLocal {
008            public java.util.List<Account> getAccountInformation(String customerId);
009    
010            public java.util.List<ExchangeRate> getExchangeRates();
011    
012            public Customer getCustomer(String customerCode);
013    
014            public Double getAccountBalance(String accountNo);
015    }