Examples of AccessCheckCommandEntry


Examples of evolaris.framework.smsservices.datamodel.AccessCheckCommandEntry

   * @return the created or modified object
   */
  public AccessCheckCommandEntry toEntry(AccessCheckCommandEntry entry, Group group, Locale locale, Session session, MessageResources resources) {
    AccessCheckInteractionEnterOrEditForm f = this;
    if (entry == null){
      entry = new AccessCheckCommandEntry();
    }
    entry.setGroup(group);
    if (f.getSortLabel() == null ||  f.getSortLabel().equals("")){
      throw new InputException(resources.getMessage(locale, "smssvc.labelMustBeProvided"));
    }
View Full Code Here

Examples of evolaris.framework.smsservices.datamodel.AccessCheckCommandEntry

  public ActionForward create(ActionMapping mapping, ActionForm form,HttpServletRequest req, HttpServletResponse resp)  {
    AccessCheckInteractionEnterOrEditForm accessCheckForm = (AccessCheckInteractionEnterOrEditForm)form;
    MessageResources resources = getResources(req);
    Group group = groupFromSession(req);
    checkAccessRights(req, group);
    AccessCheckCommandEntry accessCheckCommandEntry = accessCheckForm.toEntry(new AccessCheckCommandEntry(), group, locale, session, resources);
    LOGGER.info("User " + req.getUserPrincipal().getName().toLowerCase() + ": Created access check entry. id: " + accessCheckCommandEntry.getId() + " begin DateTime: " + accessCheckForm.getBeginDate() + " end DateTime: " + accessCheckForm.getEndDate());
    setCommandEntryInRequest(req, accessCheckCommandEntry);
    return mapping.findForward("created");
  }
View Full Code Here

Examples of evolaris.framework.smsservices.datamodel.AccessCheckCommandEntry

 
 
  protected ActionForward edit(ActionMapping mapping, ActionForm form,HttpServletRequest req, HttpServletResponse resp) {
    AccessCheckInteractionEnterOrEditForm accessCheckForm = (AccessCheckInteractionEnterOrEditForm)form;
    MessageResources resources = getResources(req);
    AccessCheckCommandEntry commandEntry = (AccessCheckCommandEntry)commandEntryFromRequest(req);
    if(commandEntry == null){
      throw new InputException(resources.getMessage(locale, "smssvc.editedInteractionDoesNotExistAnymore"));
    }
    checkAccessRights(req, commandEntry.getGroup());
    accessCheckForm.initialize(commandEntry, locale, session, getResources(req));
    req.getSession().setAttribute("enterOrEdit", "edit");
    req.getSession().setAttribute("formActionPath", req.getParameter("formActionPath"));
    return mapping.findForward("edit");
  }
View Full Code Here

Examples of evolaris.framework.smsservices.datamodel.AccessCheckCommandEntry

    CommandEntryManager commandEntryManager = new CommandEntryManager(locale,session);
    CommandEntry commandEntry = commandEntryManager.getCommandEntry(commandEntryId);
    if (commandEntry == null || !(commandEntry instanceof AccessCheckCommandEntry)){
      throw new InputException(getResources(req).getMessage(locale, "smssvc.editedInteractionDoesNotExistAnymore"))// may have been deleted
    }
    AccessCheckCommandEntry accessCheckCommandEntry = (AccessCheckCommandEntry)commandEntry;
    checkAccessRights(req, accessCheckCommandEntry.getGroup());
    commandEntryManager.evict(accessCheckCommandEntry)// do not modify in this session yet (might be erroneous)
    accessCheckForm.toEntry(accessCheckCommandEntry, accessCheckCommandEntry.getGroup(), locale, session, resources);
    LOGGER.info("User " + req.getUserPrincipal().getName().toLowerCase() + ": Command Entry with id: " + commandEntryId + " has been modified");
    setCommandEntryInRequest(req, accessCheckCommandEntry);
    return mapping.findForward("modified");
  }
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.