All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface bank.boundary.BankApplicationManagerInterface

public interface interface BankApplicationManagerInterface
サブシステムバウンダリを定義するインターフェース このインターフェースによりクライアント側でローカルの実装クラスとCORBA使用の実装クラスを 使用している違いを意識する必要がなくなる


Method Index

 o checkBalanceAccount(int)
 o depositAccount(int, int)
 o verifyAccount(int)
 o withdrawAccount(int, int)

Methods

 o checkBalanceAccount
 public abstract int checkBalanceAccount(int accountNumber) throws AccountNotFoundException
 o depositAccount
 public abstract int depositAccount(int accountNumber,
                                    int amount) throws AccountNotFoundException
 o verifyAccount
 public abstract boolean verifyAccount(int accountNumber)
 o withdrawAccount
 public abstract int withdrawAccount(int accountNumber,
                                     int amount) throws AccountNotFoundException

All Packages  Class Hierarchy  This Package  Previous  Next  Index