KickJava   Java API By Example, From Geeks To Geeks.

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


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

25 /*
26  * Created on 21.05.2004
27  *
28  */

29 package org.jresearch.gossip.forms;
30
31 import org.apache.struts.validator.ValidatorForm;
32
33 /**
34  * @author dbelov
35  *
36  */

37 public class ProcessModForm extends ValidatorForm {
38     private String JavaDoc fid;
39
40     private String JavaDoc name;
41
42     /**
43      * @return Returns the fid.
44      */

45     public String JavaDoc getFid() {
46         return fid;
47     }
48
49     /**
50      * @param fid
51      * The fid to set.
52      */

53     public void setFid(String JavaDoc password) {
54         this.fid = password;
55     }
56
57     /**
58      * @return Returns the name.
59      */

60     public String JavaDoc getName() {
61         return name;
62     }
63
64     /**
65      * @param name
66      * The name to set.
67      */

68     public void setName(String JavaDoc passwordConfirm) {
69         this.name = passwordConfirm;
70     }
71 }
72
Popular Tags