This interface is the home interface for the EJBean AutoAccountBean,
which in WLE is implemented by the code-generated container class
AutoAccountBeanC.
Client - class samples.j2ee.ejb.basic.statefulSession.Client.
This class illustrates using a stateful SessionBean:
It creates a trader, and perform repeated buying and selling of shares
Persistence of state between calls to the SessionBean;
the client does not do anything to maintain state between calls
How to search the JNDI tree for an appropriate container
Application-defined exceptions
Client - class samples.j2ee.ejb.basic.statelessSession.Client.
This class illustrates using a stateless SessionBean:
It creates a trader, and perform repeated buying and selling of shares
Persistence of state between calls to the SessionBean; client must
maintain state between calls
Application-defined exceptions
Client - class samples.j2ee.ejb.subclass.parent.Client.
This class is used with the "Child" EJBean to
illustrate using an EJBean that subclasses from a
another bean.
Client - class samples.j2ee.ejb.subclass.child.Client.
This class illustrates using an EJBean that subclasses from a
another bean.
Client - class samples.j2ee.ejb.sequence.jdbc.Client.
This class demonstrates calling an entity EJBean,
followed by creating two new accounts with an opening balance
and an automatically generated primary key.
Client - class samples.j2ee.ejb.sequence.oracle.Client.
This class demonstrates calling an entity EJBean,
followed by creating two new employees with a salary
and an automatically generated primary key.
Client() -
Constructor for class samples.j2ee.ejb.basic.statefulSession.Client
Client() -
Constructor for class samples.j2ee.ejb.basic.statelessSession.Client
Client() -
Constructor for class samples.j2ee.ejb.subclass.parent.Client
Client() -
Constructor for class samples.j2ee.ejb.subclass.child.Client
Client() -
Constructor for class samples.j2ee.ejb.sequence.jdbc.Client
Client() -
Constructor for class samples.j2ee.ejb.sequence.oracle.Client
create() -
Method in interface samples.j2ee.ejb.basic.statelessSession.TraderHome
This method corresponds to the ejbCreate method in the bean
"TraderBean.java".
create() -
Method in interface samples.j2ee.ejb.subclass.parent.ParentHome
This method corresponds to the ejbCreate method in the bean
"ParentBean.java".
create() -
Method in interface samples.j2ee.ejb.subclass.child.ChildHome
This method corresponds to the ejbCreate method in the bean
"ChildBean.java".
This class demonstrates calling an statefulsession EJBean
using multiple colocated clients:
Each thread is a trader, and perform repeated buying and selling of
shares
Persistence of state between calls to the SessionBean;
the client does not do anything to maintain state between calls
How to search the JNDI tree for an appropriate container
Application-defined exceptions