Package org.olat.core.gui.control

Examples of org.olat.core.gui.control.DispatchResult


    this.httpReq = httpReq;
    this.httpResp = httpResp;
    this.uriPrefix = uriPrefix;
    isValidDispatchURI = false;
    params = new HashMap<String,String>(4);
    dispatchResult = new DispatchResult();
    parseRequest(httpReq);
  }
View Full Code Here


     
      // after dispatching, commit (docu)
      DBFactory.getInstance().commit();
     
      // add the new URL to the browser history, but not if the klick resulted in a new browser window (a href .. target=...) or in a download (excel or such)
      DispatchResult dr = ureq.getDispatchResult();
      MediaResource tMr = dr.getResultingMediaResource();
      Window tWin = dr.getResultingWindow();
      if (tMr == null && tWin == null) {
        addToHistory(new HistoryEntry(ureq));
      }
      wbackofficeImpl.fireCycleEvent(END_OF_DISPATCH_CYCLE);
     
View Full Code Here

TOP

Related Classes of org.olat.core.gui.control.DispatchResult

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.