Examples of BaseActionForm


Examples of org.g4studio.common.web.BaseActionForm

   * @param
   * @return
   */
  public ActionForward updateUserItem(ActionMapping mapping, ActionForm form, HttpServletRequest request,
      HttpServletResponse response) throws Exception {
    BaseActionForm aForm = (BaseActionForm) form;
    Dto inDto = aForm.getParamAsDto(request);
    if (!isDemoMode(response)) {
      userService.updateUserItem(inDto);
      setOkTipMsg("用户数据修改成功", response);
    }
    return mapping.findForward(null);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.