All Examples  All EJB Examples  This Package
  Interface examples.ejb.sequence.oracle.Oracle
  -  public interface Oracle
  -  extends EJBObject
The methods in this interface are the public face of AccountBean.
 The signatures of the methods are identical to those of the bean, 
 except that these methods throw a java.rmi.RemoteException.
 Note that the EJBean does not implement this interface. 
 The corresponding code-generated EJBObject implements this interface
 and delegates to the EJBean.
  -  Author:
  
-  Copyright (c) 1998 by WebLogic, Inc. All Rights Reserved.
  -  Copyright (c) 1998-1999 by BEA WebXpress. All Rights Reserved.
   
  -   accountId() accountId()
-   Returns the account ID.
  
-   salary() salary()
-   Salary in account.
   
 accountId
accountId
 public abstract Integer accountId() throws RemoteException
  -  Returns the account ID.
   
- 
    -  Returns:
    
-  Integer Account ID
    
-  Throws: RemoteException
    
-  if there is
                          a communications or systems failure
  
 
 salary
salary
 public abstract double salary() throws RemoteException
  -  Salary in account.
   
- 
    -  Returns:
    
-  double Salary
    
-  Throws: RemoteException
    
-  if there is
                          a communications or systems failure
  
 
All Examples  All EJB Examples  This Package