//simple Stateless Session Bean for creating preferences accounts package cylikon.PreferencesEJB; import javax.ejb.*; import java.rmi.*; public interface CreateAccountHome extends EJBHome { //simply creating a new instance of the CreateAccount object CreateAccount create() throws CreateException,RemoteException; }