Package evolaris.platform.smssvc.web.form

Examples of evolaris.platform.smssvc.web.form.InvocationListForm


 
  /**
   * @see org.apache.struts.action.Action#execute(org.apache.struts.action.ActionMapping, org.apache.struts.action.ActionForm, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
   */
  public ActionForward list(ActionMapping mapping, ActionForm form, HttpServletRequest req, HttpServletResponse resp) {
    InvocationListForm f = (InvocationListForm)form;
    Group groupToDisplay = getCurrentGroup(req);
    if (Boolean.TRUE.equals(f.getAllGroups()) && UserManager.isUserInRole(webUser, UserManagerBase.ADMINISTRATOR)) {
      groupToDisplay = null;
    }
   
    Date now = new Date(System.currentTimeMillis());
    if(Boolean.TRUE.equals(f.getOutdatedServices())){
      now = null;
    }
   
    SmsDbManager smsDbManager = new SmsDbManager(locale, session);
   
View Full Code Here

TOP

Related Classes of evolaris.platform.smssvc.web.form.InvocationListForm

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.