| Home >> All >> org >> acs >> damsel >> client >> [ login Javadoc ] |
Source code: org/acs/damsel/client/login/LoginForm.java
1 package org.acs.damsel.client.login; 2 3 import org.apache.struts.action.*; 4 import javax.servlet.http.*; 5 6 public class LoginForm extends ActionForm { 7 private String password; 8 private String username; 9 public String getPassword() { 10 return password; 11 } 12 public void setPassword(String password) { 13 this.password = password; 14 } 15 public String getUsername() { 16 return username; 17 } 18 public void setUsername(String username) { 19 this.username = username.trim(); 20 } 21 public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { 22 return null; 23 } 24 public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { 25 } 26 }