Package evolaris.platform.smssvc.web.form

Examples of evolaris.platform.smssvc.web.form.FragmentEnterOrEditForm.initialize()


    FragmentEnterOrEditForm f = (FragmentEnterOrEditForm)form;
    Object newEntry = req.getSession().getAttribute("newInteractionList");
    if (newEntry == null || !(newEntry instanceof InteractionList)){
      return mapping.findForward("cancelled");
    }
    f.initialize((Fragment)newEntry,locale,session,getResources(req));
    return mapping.findForward("continue");
  }

  /**
   * Creates fragment entry with interactions based on mapping set in session
View Full Code Here


      throw new InputException(getResources(req).getMessage(locale, "admin.entryNotAvailable"),"new fragment entry not found in session",null,null);
    }
   
    // reload references in current session
    Fragment newFragment = (Fragment)newEntry;
    f.initialize(newFragment,locale,session,getResources(req));
    newFragment = new Fragment();
    f.toEntry(newFragment, locale, session, getResources(req));
    checkAccessRights(req, newFragment.getGroup(),null);
   
    // group assignment is not editable => perform source to destination automatically
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.