RulesManagerHome Interface

com.bea.p13n.rules.manager
RulesManagerHome Interface

public interface RulesManagerHome

    extends EJBHome

This interface is the home interface for the RulesManager EJB.


All Superinterfaces
EJBHome, Remote

Field Summary

public static final String
EJB_REF_NAME
The EJB-REF name for this EJBHome.
 

Method Summary

public RulesManager
create()
This method corresponds to the ejbCreate method in the RulesManager EJB implementation.
 
Methods from interface javax.ejb.EJBHome
getEJBMetaData, getHomeHandle, remove, remove
   

Field Detail

EJB_REF_NAME

public static final String EJB_REF_NAME
The EJB-REF name for this EJBHome.

 

Method Detail

create() Method

public RulesManager create()
throws CreateException, RemoteException
This method corresponds to the ejbCreate method in the RulesManager EJB implementation. The parameter sets of the two methods are identical. When a client calls RulesManagerHome.create(), the EJB container allocates an instance of the EJB and invokes the ejbCreate() method on the instance.

Returns

a RulesManager instance.

Exceptions

CreateException
if there is a problem creating the EJB.
RemoteException
if there is a communications error.

Related Topics

RulesManager