KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jresearch > gossip > forms > ProcessMessageForm


1 /*
2  * $Id: ProcessMessageForm.java,v 1.3 2005/06/07 12:32:17 bel70 Exp $
3  *
4  * ***** BEGIN LICENSE BLOCK ***** The contents of this file are subject to the
5  * Mozilla Public License Version 1.1 (the "License"); you may not use this file
6  * except in compliance with the License. You may obtain a copy of the License
7  * at http://www.mozilla.org/MPL/
8  *
9  * Software distributed under the License is distributed on an "AS IS" basis,
10  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
11  * the specific language governing rights and limitations under the License.
12  *
13  * The Original Code is JGossip forum code.
14  *
15  * The Initial Developer of the Original Code is the JResearch, Org. Portions
16  * created by the Initial Developer are Copyright (C) 2004 the Initial
17  * Developer. All Rights Reserved.
18  *
19  * Contributor(s): Dmitriy Belov <bel@jresearch.org> . * ***** END LICENSE BLOCK
20  * *****
21  */

22 /*
23  * Created on 19.05.2004
24  *
25  */

26 package org.jresearch.gossip.forms;
27
28 import javax.servlet.http.HttpServletRequest JavaDoc;
29
30 import org.apache.struts.action.ActionMapping;
31
32 /**
33  * @author Dmitry Belov
34  *
35  */

36 public class ProcessMessageForm extends ProcessTopicForm {
37     private String JavaDoc mid;
38
39     public void reset(ActionMapping mapping, HttpServletRequest JavaDoc request) {
40         super.reset(mapping, request);
41         this.mid = null;
42     }
43
44     /**
45      * @return Returns the mid.
46      */

47     public String JavaDoc getMid() {
48         return mid;
49     }
50
51     /**
52      * @param mid
53      * The mid to set.
54      */

55     public void setMid(String JavaDoc mid) {
56         this.mid = mid;
57     }
58 }
Popular Tags