Package org.sete.web.form.admin

Examples of org.sete.web.form.admin.ChangeSeteUserPasswordForm


      ActionForm form,
      HttpServletRequest request,
      HttpServletResponse response) throws Exception {

    doCheckAuthorization(request);
    ChangeSeteUserPasswordForm csupf = (ChangeSeteUserPasswordForm) form;
    SeteUserProfileService service = getService(SeteUserProfileService.class);
    ChangeSeteUserPasswordVo csupvo = new ChangeSeteUserPasswordVo();
    csupvo.setUserId(getAuthenticatedUser(request).getUserId().toString());

    if(!csupf.getNewPassword().equals(csupf.getNewPasswordConfirm())) {
      System.out.println("\n\nACTION: NOT EQUAL\n\n");
    }

    BeanUtils.copyProperties(csupvo, form);
    service.changeSeteUserPassword(csupvo);
View Full Code Here


      ActionForm form,
      HttpServletRequest request,
      HttpServletResponse response) throws Exception {

    doCheckAuthorization(request);
    ChangeSeteUserPasswordForm csupf = (ChangeSeteUserPasswordForm) form;
    SeteUserProfileService service = getService(SeteUserProfileService.class);
    ChangeSeteUserPasswordVo csupvo = new ChangeSeteUserPasswordVo();
    csupvo.setUserId(getAuthenticatedUser(request).getUserId().toString());

    if(!csupf.getNewPassword().equals(csupf.getNewPasswordConfirm())) {
      System.out.println("\n\nACTION: NOT EQUAL\n\n");
    }

    BeanUtils.copyProperties(csupvo, form);
    service.changeSeteUserPassword(csupvo);
View Full Code Here

TOP

Related Classes of org.sete.web.form.admin.ChangeSeteUserPasswordForm

Copyright © 2018 www.massapicom. 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.