WebLogic Server 6.0 Code Examples, BEA Systems, Inc.

examples.cluster.ejb.teller
Interface TellerHome

All Superinterfaces:
javax.ejb.EJBHome, java.rmi.Remote

public interface TellerHome
extends javax.ejb.EJBHome

This interface is the home interface for the TellerBean.java, which in WebLogic is implemented by the code-generated container class TellerBeanC. A home interface may support one or more create methods, which must correspond to methods named "ejbCreate" in the EJBean.

Author:
Copyright (c) 1999-2000 by BEA Systems, Inc. All Rights Reserved.

Method Summary
 Teller create()
          This method corresponds to the ejbCreate method in the bean "TellerBean.java".
 
Methods inherited from interface javax.ejb.EJBHome
getEJBMetaData, getHomeHandle, remove, remove
 

Method Detail

create

public Teller create()
              throws javax.ejb.CreateException,
                     java.rmi.RemoteException
This method corresponds to the ejbCreate method in the bean "TellerBean.java". The parameter sets of the two methods are identical. When the client calls TellerHome.create(), the container allocates an instance of the EJBean and calls ejbCreate().
Returns:
Teller
Throws:
java.rmi.RemoteException - if there is a communications or systems failure
javax.ejb.CreateException - if there is problem creating the bean
See Also:
ejb.examples.cluster.TellerBean

Documentation is available at
http://e-docs.bea.com/wls/docs60

Copyright © 2000 BEA Systems, Inc. All Rights Reserved.