1 /*
2  * @(#) $Id: MessageBean.java,v 1.2 2003/07/08 08:13:52 pankaj Exp $
3  *
4  * Copyright (c) 2002-03 by Pankaj Kumar (http://www.pankaj-k.net). 
5  * All rights reserved.
6  *
7  * The license governing the use of this file can be found in the 
8  * root directory of the containing software.
9  */
10package rmb;
11import java.util.Date;
12
13public class MessageBean implements java.io.Serializable {
14    private String title;
15    private String description;
16    private String author;
17    private Date postDate;
18    private String msgid;
19
20    public MessageBean(){
21    }
22
23    public String getTitle(){
24        return title;
25    }
26    public void setTitle(String title){
27        this.title = title;
28    }
29    public String getDescription(){
30        return description;
31    }
32    public void setDescription(String description){
33        this.description = description;
34    }
35    public String getAuthor(){
36        return author;
37    }
38    public void setAuthor(String author){
39        this.author = author;
40    }
41    public Date getPostDate(){
42        return postDate;
43    }
44    public void setPostDate(Date postDate){
45        this.postDate = postDate;
46    }
47    public String getMsgid(){
48        return msgid;
49    }
50    public void setMsgid(String msgid){
51        this.msgid = msgid;
52    }
53}