Examples of ERXNextPageForResultWOAction


Examples of er.extensions.appserver.ERXNextPageForResultWOAction

   *
   * @return result {@link TaskInfoPage} displaying result of task {@link T04SimpleEOFTask}
   */
  public WOActionResults dispatchSimpleEOFTask() {
    // Set up the controller for the end of task action
    IERXPerformWOActionForResult controller = new ERXNextPageForResultWOAction(pageWithName(TaskInfoPage.class), "taskInfo");
   
    Callable<EOGlobalID> task = new T04SimpleEOFTask();
   
   
    CCAjaxLongResponsePage nextPage = pageWithName(CCAjaxLongResponsePage.class);
View Full Code Here

Examples of er.extensions.appserver.ERXNextPageForResultWOAction

   *
   * @return result {@link TaskInfoPage} displaying result of task {@link T05MultiThreadedEOFTask}
   */
  public WOActionResults dispatchMultiThreadedTask() {
    // Set up the controller for the end of task action
    ERXNextPageForResultWOAction controller = new ERXNextPageForResultWOAction(pageWithName(TaskInfoPage.class), "taskInfo");
   
    Callable<EOGlobalID> task = new T05MultiThreadedEOFTask();
   
    CCAjaxLongResponsePage nextPage = pageWithName(CCAjaxLongResponsePage.class);
    nextPage.setNextPageForResultController(controller);
View Full Code Here

Examples of er.extensions.appserver.ERXNextPageForResultWOAction

   *
   * @return result {@link TaskInfoPage} displaying result of task {@link T07EOFTaskWithSubTasks}
   */
  public WOActionResults dispatchComboTask() {
    // Set up the controller for the end of task action
    ERXNextPageForResultWOAction controller = new ERXNextPageForResultWOAction(pageWithName(TaskInfoPage.class), "taskInfo");
   
    Callable<EOGlobalID> task = new T07EOFTaskWithSubTasks();
   
    CCAjaxLongResponsePage nextPage = pageWithName(CCAjaxLongResponsePage.class);
    nextPage.setNextPageForResultController(controller);
View Full Code Here

Examples of er.extensions.appserver.ERXNextPageForResultWOAction

   * return the next page except for the case where the user stops the task.
   *
   * */
  public IERXPerformWOActionForResult nextPageForResultController() {
    if (_nextPageForResultController == null) {
      _nextPageForResultController = new ERXNextPageForResultWOAction(_referringPage);
    } //~ if (_nextPageForResultController == null)
    return _nextPageForResultController;
  }
View Full Code Here

Examples of er.extensions.appserver.ERXNextPageForResultWOAction

 
  /** @return the controller that handles the scenario where the user stops a stoppable task */
  public IERXPerformWOAction nextPageForCancelController() {
    if ( _nextPageForCancelController == null ) {
      // By default, return the originating page
      _nextPageForCancelController = new ERXNextPageForResultWOAction(_referringPage);;
    }
    return _nextPageForCancelController;
  }
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.