package examples.ejb.basic.statefulSession; import javax.ejb.*; import java.rmi.RemoteException; /** * 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. * @author Copyright (c) 1998-1999 by BEA WebXpress. All Rights Reserved. */ public interface TraderHome extends EJBHome { /** * 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 calls ejbCreate(). * * @param traderName String Trader Name * @return Trader * @exception RemoteException if there is * a communications or systems failure * @exception CreateException * if there is a error creating the bean * @see examples.ejb.basic.statefulSession.TraderBean */ Trader create(String traderName) throws CreateException, RemoteException; }