All Packages Class Hierarchy This Package Previous Next Index
bank.corba._st_CorbaBankApplicationManagerInterface
interface CorbaBankApplicationManagerInterface {
boolean verifyAccount(
in long accountNumber
);
long depositAccount(
in long accountNumber,
in long amount
)
raises(
::bank::corba::AccountNotFoundException
);
long withdrawAccount(
in long accountNumber,
in long amount
)
raises(
::bank::corba::AccountNotFoundException
);
long checkBalanceAccount(
in long accountNumber
)
raises(
::bank::corba::AccountNotFoundException
);
};
Operation: ::bank::corba::CorbaBankApplicationManagerInterface::checkBalanceAccount.
Operation: ::bank::corba::CorbaBankApplicationManagerInterface::depositAccount.
Operation: ::bank::corba::CorbaBankApplicationManagerInterface::verifyAccount.
Operation: ::bank::corba::CorbaBankApplicationManagerInterface::withdrawAccount.
protected CorbaBankApplicationManagerInterface _wrapper
private static String __ids[]
public _st_CorbaBankApplicationManagerInterface()
public String[] _ids()
public CorbaBankApplicationManagerInterface _this()
public int checkBalanceAccount(int accountNumber) throws AccountNotFoundException
Operation: ::bank::corba::CorbaBankApplicationManagerInterface::checkBalanceAccount.
long checkBalanceAccount( in long accountNumber ) raises( ::bank::corba::AccountNotFoundException );
public int depositAccount(int accountNumber,
int amount) throws AccountNotFoundException
Operation: ::bank::corba::CorbaBankApplicationManagerInterface::depositAccount.
long depositAccount( in long accountNumber, in long amount ) raises( ::bank::corba::AccountNotFoundException );
public boolean verifyAccount(int accountNumber)
Operation: ::bank::corba::CorbaBankApplicationManagerInterface::verifyAccount.
boolean verifyAccount( in long accountNumber );
public int withdrawAccount(int accountNumber,
int amount) throws AccountNotFoundException
Operation: ::bank::corba::CorbaBankApplicationManagerInterface::withdrawAccount.
long withdrawAccount( in long accountNumber, in long amount ) raises( ::bank::corba::AccountNotFoundException );
All Packages Class Hierarchy This Package Previous Next Index