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

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.     public ActionErrors validate(ActionMapping actionMapping,
  17.                                  HttpServletRequest httpServletRequest) {
  18.         /** @todo: finish this method, this is just the skeleton.*/
  19.         return null;
  20.     }
  21.     public void reset(ActionMapping actionMapping,
  22.                       HttpServletRequest servletRequest) {
  23.     }
  24.     public String getPassword() {
  25.         return password;
  26.     }
  27.     public void setPassword(String password) {
  28.         this.password = password;
  29.     }
  30.     public String getUsername() {
  31.         return username;
  32.     }
  33.     public String getCondition() {
  34.         return condition;
  35.     }
  36.     public String getHidCondition() {
  37.         return hidCondition;
  38.     }
  39.     public Long getRole() {
  40.         return role;
  41.     }
  42.     public String getName() {
  43.         return name;
  44.     }
  45.     public Long getId() {
  46.         return id;
  47.     }
  48.     public String getCondition1() {
  49.         return condition1;
  50.     }
  51.     public void setUsername(String username) {
  52.         this.username = username;
  53.     }
  54.     public void setCondition(String condition) {
  55.         this.condition = condition;
  56.     }
  57.     public void setHidCondition(String hidCondition) {
  58.         this.hidCondition = hidCondition;
  59.     }
  60.     public void setRole(Long role) {
  61.         this.role = role;
  62.     }
  63.     public void setName(String name) {
  64.         this.name = name;
  65.     }
  66.     public void setId(Long id) {
  67.         this.id = id;
  68.     }
  69.     public void setCondition1(String condition1) {
  70.         this.condition1 = condition1;
  71.     }
  72. }