All Packages Class Hierarchy This Package Previous Next Index
bank.corba._CorbaBankApplicationManagerInterfaceImplBase | +----bank.corba._example_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.
public _example_CorbaBankApplicationManagerInterface()
public _example_CorbaBankApplicationManagerInterface(String name)
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