Package evolaris.platform.smssvc.web.form

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


   *      javax.servlet.http.HttpServletRequest,
   *      javax.servlet.http.HttpServletResponse)
   */
  public ActionForward delete(ActionMapping mapping, ActionForm form, HttpServletRequest req, HttpServletResponse resp) {

    InteractionEnterOrEditBaseForm interactionForm = (InteractionEnterOrEditBaseForm)form;

    long commandEntryId = interactionForm.getCommandEntryId();
    CommandEntryManager commandEntryManager = new CommandEntryManager(locale,session);
    CommandEntry commandEntry = commandEntryManager.getCommandEntry(commandEntryId);
    if (commandEntry == null){
      throw new InputException(getResources(req).getMessage(locale, "smssvc.InteractionToBeDeletedDoesNotExistAnymore."),"command entry id = " + commandEntryId,null,null)// may have been deleted
    }
View Full Code Here

TOP

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

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.