All Examples  All EJB Examples  This Package
  Interface examples.ejb.subclass.parent.ParentHome
  -  public interface ParentHome
  -  extends EJBHome
This interface is the home interface for the ParentBean.java,
 which in WebLogic is implemented by the code-generated container
 class ParentBeanC. 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-1999 by BEA WebXpress. All Rights Reserved.
   
  -   create() create()
-   This method corresponds to the ejbCreate method in the bean
 "ParentBean.java".
   
 create
create
 public abstract Parent create() throws CreateException, RemoteException
  -  This method corresponds to the ejbCreate method in the bean
 "ParentBean.java".
 The parameter sets of the two methods are identical. When the client calls
 ParentHome.create(), the container
 allocates an instance of the EJBean and callsejbCreate().
   
- 
    -  Returns:
    
-  Parent
    
-  Throws: CreateException
    
-  if there is
                          a problem creating the bean
    
-  Throws: RemoteException
    
-  if there is
                          a communications or systems failure
    
-  See Also:
    
-  ParentBean
  
 
All Examples  All EJB Examples  This Package