KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > dotmarketing > cms > forgotpassword > struts > ForgotPasswordForm


1 package com.dotmarketing.cms.forgotpassword.struts;
2
3
4 import org.apache.struts.validator.ValidatorForm;
5
6 public class ForgotPasswordForm extends ValidatorForm {
7
8
9     /**
10      *
11      */

12     private static final long serialVersionUID = 1L;
13     String JavaDoc email;
14     String JavaDoc dispatch;
15
16
17
18     /** default constructor */
19     public ForgotPasswordForm() {
20     }
21
22
23
24     
25     /**
26      * @return Returns the dispatch.
27      */

28     public String JavaDoc getDispatch() {
29         return this.dispatch;
30     }
31     /**
32      * @param dispatch The dispatch to set.
33      */

34     public void setDispatch(String JavaDoc dispatch) {
35         this.dispatch = dispatch;
36     }
37
38     /**
39      * @return Returns the email.
40      */

41     public String JavaDoc getEmail() {
42         return this.email;
43     }
44     /**
45      * @param email The email to set.
46      */

47     public void setEmail(String JavaDoc email) {
48         this.email = email;
49     }
50 }
51
Popular Tags