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

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 RoleActionForm extends ActionForm {
  5.     private String name = "";
  6.     private Long id = new Long(0);
  7.     private String[] fmodel;
  8.     private String[] cmodel;
  9.     private String[] menus;
  10.     public ActionErrors validate(ActionMapping actionMapping,
  11.                                  HttpServletRequest httpServletRequest) {
  12.         /** @todo: finish this method, this is just the skeleton.*/
  13.         return null;
  14.     }
  15.     public void reset(ActionMapping actionMapping,
  16.                       HttpServletRequest servletRequest) {
  17.     }
  18.     public Long getId() {
  19.         return id;
  20.     }
  21.     public String getName() {
  22.         return name;
  23.     }
  24.     public String[] getCmodel() {
  25.         return cmodel;
  26.     }
  27.     public String[] getFmodel() {
  28.         return fmodel;
  29.     }
  30.     public String[] getMenus() {
  31.         return menus;
  32.     }
  33.     public void setId(Long id) {
  34.         this.id = id;
  35.     }
  36.     public void setName(String name) {
  37.         this.name = name;
  38.     }
  39.     public void setCmodel(String[] cmodel) {
  40.         this.cmodel = cmodel;
  41.     }
  42.     public void setFmodel(String[] fmodel) {
  43.         this.fmodel = fmodel;
  44.     }
  45.     public void setMenus(String[] menus) {
  46.         this.menus = menus;
  47.     }
  48. }