All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class bank.corba._example_CorbaBankApplicationManagerInterface

bank.corba._CorbaBankApplicationManagerInterfaceImplBase
   |
   +----bank.corba._example_CorbaBankApplicationManagerInterface

public class _example_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
);
};


Constructor Index

 o _example_CorbaBankApplicationManagerInterface()
Construct a transient object.
 o _example_CorbaBankApplicationManagerInterface(String)
Construct a persistently named object.

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.

Constructors

 o _example_CorbaBankApplicationManagerInterface
 public _example_CorbaBankApplicationManagerInterface()
Construct a transient object.

 o _example_CorbaBankApplicationManagerInterface
 public _example_CorbaBankApplicationManagerInterface(String name)
Construct a persistently named object.

Methods

 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