Package evolaris.platform.um.web.form

Examples of evolaris.platform.um.web.form.UserSetListForm$UserSetListEntry


  /**
   * Deletes the user set
   */
  public ActionForward delete(ActionMapping mapping, ActionForm form, HttpServletRequest req, HttpServletResponse resp) {
    UserSetListForm userSetListForm = (UserSetListForm) form;
    UserSetManager userSetManager = new UserSetManager(locale,session);
    String[] ids = userSetListForm.getChoosen();
    if (ids != null) {
      for (String id : ids) {
        UserSet userSet = userSetManager.getUserSet(Long.parseLong(id));
        if (userSet != null) {
          // security check
View Full Code Here


  }
 
 
  @Override
  public ActionForward cancel(ActionMapping mapping, ActionForm form, HttpServletRequest req, HttpServletResponse resp) {
    UserSetListForm userSetListForm = (UserSetListForm) form;
    userSetListForm.setChoosen(null)// forget user input
    return back(mapping, form, req, resp);
  }
View Full Code Here

TOP

Related Classes of evolaris.platform.um.web.form.UserSetListForm$UserSetListEntry

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.