AdminActionForm.java
上传用户:zghglow
上传日期:2022-08-09
资源大小:27227k
文件大小:3k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

JavaScript

  1. package com.chinacannel.xlchemical.struts.ActionForm;
  2. import javax.servlet.http.*;
  3. import org.apache.struts.action.*;
  4. public class AdminActionForm extends ActionForm {
  5.     private static final long serialVersionUID = 1;
  6.     private String username;
  7.     private String password;
  8.     private String condition = "";
  9.     private String condition1 = "";
  10.     private Long role = new Long(0);
  11.     private String hidCondition = "";
  12.     private String name = "";
  13.     private Long id;
  14.     private String oldPwd = "";
  15.     private String newPwd1 = "";
  16.     private String newPwd2 = "";
  17.     public ActionErrors validate(ActionMapping actionMapping,
  18.                                  HttpServletRequest httpServletRequest) {
  19.         /** @todo: finish this method, this is just the skeleton.*/
  20.         return null;
  21.     }
  22.     public void reset(ActionMapping actionMapping,
  23.                       HttpServletRequest servletRequest) {
  24.     }
  25.     public String getPassword() {
  26.         return password;
  27.     }
  28.     public void setPassword(String password) {
  29.         this.password = password;
  30.     }
  31.     public String getUsername() {
  32.         return username;
  33.     }
  34.     public String getCondition() {
  35.         return condition;
  36.     }
  37.     public String getHidCondition() {
  38.         return hidCondition;
  39.     }
  40.     public Long getRole() {
  41.         return role;
  42.     }
  43.     public String getName() {
  44.         return name;
  45.     }
  46.     public Long getId() {
  47.         return id;
  48.     }
  49.     public String getCondition1() {
  50.         return condition1;
  51.     }
  52.     public String getNewPwd1() {
  53.         return newPwd1;
  54.     }
  55.     public String getNewPwd2() {
  56.         return newPwd2;
  57.     }
  58.     public String getOldPwd() {
  59.         return oldPwd;
  60.     }
  61.     public void setUsername(String username) {
  62.         this.username = username;
  63.     }
  64.     public void setCondition(String condition) {
  65.         this.condition = condition;
  66.     }
  67.     public void setHidCondition(String hidCondition) {
  68.         this.hidCondition = hidCondition;
  69.     }
  70.     public void setRole(Long role) {
  71.         this.role = role;
  72.     }
  73.     public void setName(String name) {
  74.         this.name = name;
  75.     }
  76.     public void setId(Long id) {
  77.         this.id = id;
  78.     }
  79.     public void setCondition1(String condition1) {
  80.         this.condition1 = condition1;
  81.     }
  82.     public void setNewPwd1(String newPwd1) {
  83.         this.newPwd1 = newPwd1;
  84.     }
  85.     public void setNewPwd2(String newPwd2) {
  86.         this.newPwd2 = newPwd2;
  87.     }
  88.     public void setOldPwd(String oldPwd) {
  89.         this.oldPwd = oldPwd;
  90.     }
  91. }