All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class bank.corba._st_CorbaBankApplicationManagerInterface

bank.corba._st_CorbaBankApplicationManagerInterface

public class _st_CorbaBankApplicationManagerInterface
implements CorbaBankApplicationManagerInterface

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
);
};


Variable Index

 o __ids
 o _wrapper

Constructor Index

 o _st_CorbaBankApplicationManagerInterface()

Method Index

 o _ids()
 o _this()
 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.

Variables

 o _wrapper
 protected CorbaBankApplicationManagerInterface _wrapper
 o __ids
 private static String __ids[]

Constructors

 o _st_CorbaBankApplicationManagerInterface
 public _st_CorbaBankApplicationManagerInterface()

Methods

 o _ids
 public String[] _ids()
 o _this
 public CorbaBankApplicationManagerInterface _this()
 o checkBalanceAccount
 public int checkBalanceAccount(int accountNumber) throws AccountNotFoundException

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

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

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

 o verifyAccount
 public boolean verifyAccount(int accountNumber)

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

boolean verifyAccount(
in long accountNumber
);

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