View Javadoc
1   /*
2    * Created on Jun 1, 2005
3    *
4    * TODO To change the template for this generated file go to
5    * Window - Preferences - Java - Code Style - Code Templates
6    */
7   package net.sf.mindoro.web;
8   
9   /***
10   * TODO change the description of LoginForm
11   * 
12   * @author aisrael
13   */
14  public class LoginForm {
15  
16      private String username;
17  
18      private String password;
19  
20      /***
21       * @return Returns the username.
22       */
23      public final String getUsername() {
24          return username;
25      }
26  
27      /***
28       * @param username
29       *            The username to set.
30       */
31      public final void setUsername(final String username) {
32          this.username = username;
33      }
34  
35      /***
36       * @return Returns the password.
37       */
38      public final String getPassword() {
39          return password;
40      }
41  
42      /***
43       * @param password
44       *            The password to set.
45       */
46      public final void setPassword(final String password) {
47          this.password = password;
48      }
49  }