All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class bank.corba._tie_CorbaBankApplicationManagerInterface

bank.corba._CorbaBankApplicationManagerInterfaceImplBase
   |
   +----bank.corba._tie_CorbaBankApplicationManagerInterface

public class _tie_CorbaBankApplicationManagerInterface
extends _CorbaBankApplicationManagerInterfaceImplBase

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 _delegate

Constructor Index

 o _tie_CorbaBankApplicationManagerInterface(CorbaBankApplicationManagerInterfaceOperations)
 o _tie_CorbaBankApplicationManagerInterface(CorbaBankApplicationManagerInterfaceOperations, String)

Method Index

 o _delegate()
 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 _delegate
 private CorbaBankApplicationManagerInterfaceOperations _delegate

Constructors

 o _tie_CorbaBankApplicationManagerInterface
 public _tie_CorbaBankApplicationManagerInterface(CorbaBankApplicationManagerInterfaceOperations delegate)
 o _tie_CorbaBankApplicationManagerInterface
 public _tie_CorbaBankApplicationManagerInterface(CorbaBankApplicationManagerInterfaceOperations delegate,
                                                  String name)

Methods

 o _delegate
 public CorbaBankApplicationManagerInterfaceOperations _delegate()
 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