Package evolaris.platform.smssvc.web.form

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


    Object newEntry = req.getSession().getAttribute("newInteractionList");
    if (newEntry == null || !(newEntry instanceof Invocation)){
      return mapping.findForward("cancelled");
    }
    Invocation invocation = (Invocation)newEntry;
    f.initialize(invocation,locale,session,getResources(req));
    prepareSelectionLists(form,req,invocation.getMsisdn(),invocation.getEmail());
    return mapping.findForward("continue");
  }

  /**
 
View Full Code Here


      throw new InputException(getResources(req).getMessage(locale, "admin.entryNotAvailable"),"new invocation entry not found in session",null,null);
    }
   
    // reload references in current session
    Invocation newInvocation = (Invocation)newEntry;
    f.initialize(newInvocation,locale,session,getResources(req));
    newInvocation = new Invocation();
    f.toEntry(newInvocation, locale, session, getResources(req));
    checkAccessRights(req, newInvocation.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.