adminuotimeset.java

来自「一个jsp写的bbs」· Java 代码 · 共 52 行

JAVA
52
字号
package com.laoer.bbscs.web.action;

import javax.servlet.http.*;

import org.apache.struts.action.*;
import com.laoer.bbscs.service.config.*;
import com.laoer.bbscs.web.form.*;
import com.laoer.bbscs.exception.SysConfigException;

public class AdminUOTimeSet
    extends Action {

  private SysConfig sysConfig;

  public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request,
                               HttpServletResponse response) {
    AdminUOTimeSetForm adminUOTimeSetForm = (AdminUOTimeSetForm) form;

    if (adminUOTimeSetForm.getAction().equalsIgnoreCase("index")) {
      adminUOTimeSetForm.setAction("save");
      adminUOTimeSetForm.setUserOnlineTime(this.getSysConfig().getUserOnlineTime());
      return mapping.findForward("userOnlineTimeSet");
    }

    if (adminUOTimeSetForm.getAction().equalsIgnoreCase("save")) {
      ActionMessages messages = new ActionMessages();
      this.getSysConfig().setUserOnlineTime(adminUOTimeSetForm.getUserOnlineTime());
      try {
        this.getSysConfig().saveConfigs();
        messages.add("resultMsg", new ActionMessage("bbscs.dataupdate.succeed"));
        this.saveMessages(request, messages);
      }
      catch (SysConfigException ex) {
        messages.add("error.dataupdate.failed", new ActionMessage("error.dataupdate.failed"));
        this.saveErrors(request, messages);
      }

      return mapping.findForward("userOnlineTimeSet");
    }

    return mapping.getInputForward();
  }

  public SysConfig getSysConfig() {
    return sysConfig;
  }

  public void setSysConfig(SysConfig sysConfig) {
    this.sysConfig = sysConfig;
  }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?