|  |  | WebLogic Server 6.1 Code Examples, BEA Systems, Inc. | 
| SUMMARY:  INNER | FIELD | CONSTR | METHOD | DETAIL:  FIELD | CONSTR | METHOD | 
examples.iiop.ejb.stateless.server.wls
Interface  TraderHome
- All Superinterfaces: 
- javax.ejb.EJBHome, java.rmi.Remote
- public interface TraderHome- extends javax.ejb.EJBHome
This interface is the home interface for the TraderBean.java,
 which in WebLogic is implemented by the code-generated container
 class TraderBeanC. A home interface may support one or more create
 methods, which must correspond to methods named "ejbCreate" in the EJBean.
- Author: 
- Copyright (c) 1998 by WebLogic, Inc. All Rights Reserved., Copyright (c) 1998-2001 by BEA Systems, Inc. All Rights Reserved.
| Method Summary | 
|  Trader | create()This method corresponds to the ejbCreate method in the bean
 "TraderBean.java".
 | 
 
| Methods inherited from interface javax.ejb.EJBHome | 
| getEJBMetaData, getHomeHandle, remove, remove | 
 
create
public Trader create()
              throws javax.ejb.CreateException,
                     java.rmi.RemoteException
- This method corresponds to the ejbCreate method in the bean
 "TraderBean.java".
 The parameter sets of the two methods are identical. When the client calls
 TraderHome.create(), the container
 allocates an instance of the EJBean and callsejbCreate().
- 
 
- 
- Returns:
- Trader
- Throws:
- java.rmi.RemoteException- if there is
                          a communications or systems failure
- javax.ejb.CreateException- if there is a problem creating the bean
- See Also: 
- TraderBean
 
Copyright © 2001 BEA Systems, Inc. All Rights Reserved.