⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 admincheckpasswordaction.java~1~

📁 类似公司动态、企业新闻、新产品发布、促销活动和行业动态等更新信息集中管理
💻 JAVA~1~
字号:
package com.victor.webtier.managerAction;

import org.apache.struts.action.*;
import javax.servlet.http.*;
import com.victor.domain.ManagerActionForm;
import com.victor.service.ManagerFacade;
import com.victor.service.ManagerFacadeImpl;

//修改总管理员的密码之前核对
public class AdminCheckPasswordAction
    extends Action {

  private ManagerFacade managerFacade;
  public AdminCheckPasswordAction() {
    this.managerFacade = new ManagerFacadeImpl();
  }

  public ActionForward perform(ActionMapping actionMapping,
                               ActionForm actionForm,
                               HttpServletRequest httpServletRequest,
                               HttpServletResponse httpServletResponse) {

    ManagerActionForm managerActionForm = (ManagerActionForm) actionForm;
    managerActionForm.setManagerPassword("");

    throw new java.lang.UnsupportedOperationException(
        "Method perform() not yet implemented.");
  }
}

⌨️ 快捷键说明

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