| Home >> All >> org >> acs >> damsel >> client >> [ edit Javadoc ] |
Source code: org/acs/damsel/client/edit/EditUserForm.java
1 package org.acs.damsel.client.edit; 2 3 import org.apache.struts.action.*; 4 import javax.servlet.http.*; 5 import org.acs.damsel.srvr.user.*; 6 7 public class EditUserForm extends ActionForm { 8 9 public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { 10 /**@todo: finish this method, this is just the skeleton.*/ 11 return null; 12 } 13 public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { 14 } 15 }