//Source file: c:/work/board/NoticHome.java
/**********************************************
/* ÇöÀç³¯Â¥ 0-03-07 2:25¿ÀÈÄ
/* ÀÛ¼ºÀÚ : Á¤À¯Áø
/* ¼³¸í: EJBHomeÀÇ interface
***********************************************/
package board;

import javax.ejb.*;
import java.rmi.RemoteException;
import java.util.Enumeration;

public interface NoticeHome  extends EJBHome {
	
	public void remove(Handle arg0) throws RemoteException,RemoveException;
	
	public void remove(Object arg0) throws RemoteException,RemoveException;
	
	public Notice create(TNotice tNotice) throws CreateException,RemoteException;
	
	public Notice findByPrimaryKey(NoticePK primaryKey) throws FinderException,RemoteException;

	/**
	   @roseuid 38C3990B03E7
	 */
	public Enumeration findAll() throws FinderException,RemoteException;
}
