RoleForm.java
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. //Created by MyEclipse Struts
  2. // XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.0/xslt/JavaClass.xsl
  3. package com.oa.module.office.role;
  4. import javax.servlet.http.HttpServletRequest;
  5. import org.apache.struts.action.ActionErrors;
  6. import org.apache.struts.action.ActionForm;
  7. import org.apache.struts.action.ActionMapping;
  8. import org.apache.struts.action.ActionMessage;
  9. /**
  10.  * MyEclipse Struts Creation date: 01-21-2008
  11.  * 
  12.  * XDoclet definition:
  13.  * 
  14.  * @struts.form name="roleForm"
  15.  */
  16. public class RoleForm extends ActionForm {
  17. private long rid;
  18. private String rname;
  19. private String rmemo;
  20. private String method;
  21. public ActionErrors validate(ActionMapping mapping,
  22. HttpServletRequest request) {
  23. ActionErrors errors = new ActionErrors();
  24. if (this.method != null && this.method.equals("add")
  25. && this.method.equals("update")) {
  26. if (this.rname == null || this.rname.trim().equals("")) {
  27. ActionMessage message = new ActionMessage("角色名为空!", false);
  28. errors.add("rname", message);
  29. }
  30. }
  31. return errors;
  32. }
  33. public void reset(ActionMapping mapping, HttpServletRequest request) {
  34. this.method = "add";
  35. }
  36. public String getMethod() {
  37. return method;
  38. }
  39. public void setMethod(String method) {
  40. this.method = method;
  41. }
  42. public long getRid() {
  43. return rid;
  44. }
  45. public void setRid(long rid) {
  46. this.rid = rid;
  47. }
  48. public String getRmemo() {
  49. return rmemo;
  50. }
  51. public void setRmemo(String rmemo) {
  52. this.rmemo = rmemo;
  53. }
  54. public String getRname() {
  55. return rname;
  56. }
  57. public void setRname(String rname) {
  58. this.rname = rname;
  59. }
  60. }