001 package biz.wedoit4u.ejb.session;
002
003 import javax.ejb.CreateException;
004 import javax.ejb.EJBLocalHome;
005
006 /**
007 * The <code>local home interface</code> to the stateless session bean
008 * that implements the business logic for creating/modifying data
009 * in the <code>wedoit4u</code> schema tables.
010 *
011 * @author Rakesh Vidyadharan 21<sup><small>st</small></sup> September 2003
012 *
013 * <p>Copyright 2003, wedoit4u.biz</p>
014 *
015 * @version $Id: DatabaseActionHome.java,v 1.1 2003/10/11 15:35:00 learn Exp $
016 */
017 public interface DatabaseActionHome extends EJBLocalHome
018 {
019 /**
020 * Create an instance of the {@link DatabaseAction} stateless
021 * session bean.
022 *
023 * @throws CreateException - If errors are encountered while creating
024 * a new instance of the DatabaseAction bean.
025 */
026 public DatabaseAction create() throws CreateException;
027 }