All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface bank.corba.CorbaBankApplicationManagerInterfaceOperations

public interface interface CorbaBankApplicationManagerInterfaceOperations

IDL definition:
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
);
};


Method Index

 o checkBalanceAccount(int)

Operation: ::bank::corba::CorbaBankApplicationManagerInterface::checkBalanceAccount.

 o depositAccount(int, int)

Operation: ::bank::corba::CorbaBankApplicationManagerInterface::depositAccount.

 o verifyAccount(int)

Operation: ::bank::corba::CorbaBankApplicationManagerInterface::verifyAccount.

 o withdrawAccount(int, int)

Operation: ::bank::corba::CorbaBankApplicationManagerInterface::withdrawAccount.

Methods

 o checkBalanceAccount
 public abstract int checkBalanceAccount(int accountNumber) throws AccountNotFoundException

Operation: ::bank::corba::CorbaBankApplicationManagerInterface::checkBalanceAccount.

long checkBalanceAccount(
in long accountNumber
)
raises(
::bank::corba::AccountNotFoundException
);

 o depositAccount
 public abstract 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
);

 o verifyAccount
 public abstract boolean verifyAccount(int accountNumber)

Operation: ::bank::corba::CorbaBankApplicationManagerInterface::verifyAccount.

boolean verifyAccount(
in long accountNumber
);

 o withdrawAccount
 public abstract 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