1 11 12 package freeforums.message; 13 14 import java.rmi.RemoteException ; 15 import java.util.Date ; 16 import javax.ejb.*; 17 18 public interface Message extends EJBObject { 19 20 public Integer getMessageID() throws RemoteException ; 21 public void setMessageID(Integer messageID) throws RemoteException ; 22 23 public String getSubject() throws RemoteException ; 24 public void setSubject(String subject) throws RemoteException ; 25 26 public String getDescription() throws RemoteException ; 27 public void setDescription(String descrption) throws RemoteException ; 28 29 public Integer getReplyToID() throws RemoteException ; 30 public void setReplyToID(Integer replyToID) throws RemoteException ; 31 32 public Integer getForumID() throws RemoteException ; 33 public void setForumID(Integer forumID) throws RemoteException ; 34 35 public String getAttachmentFile() throws RemoteException ; 36 public void setAttachmentFile(String attachmentFile) throws RemoteException ; 37 38 public String getUserName() throws RemoteException ; 39 public void setUserName(String userName) throws RemoteException ; 40 41 public Date getMessageDate() throws RemoteException ; 42 public void setMessageDate(Date messageDate) throws RemoteException ; 43 44 } | Popular Tags |