What is the point of requiring a home interface for stateless session beans?
Unless I'm mistaken, it will always look like this:
import java.rmi.RemoteException;
import javax.ejb.EJBHome;
import javax.ejb.CreateException;
public interface FooHome extends EJBHome{
public Foo create() throws RemoteException,CreateException;
}
Why must developers create something that is exactly the same every time? Is
this just an exercise in futility? Or a plot to keep code-generating-wizards
in business? Or am missing something?
Dave Ford
Smart Soft - The Java Training Company
http://www.smart-soft.com
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff EJB-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".