Package org.araneaframework.core

Examples of org.araneaframework.core.BaseService


  public void redirect(Environment environment, final String url) throws Exception {
    ContinuationManagerContext continuationHandler =
      (ContinuationManagerContext) environment.getEntry(ContinuationManagerContext.class)
   
    // setting the continuation
    continuationHandler.runContinuationOnce(new BaseService() {
      protected void action(Path path, InputData input, OutputData output) throws Exception {
        ((ServletOutputData)output).getResponse().sendRedirect(url);
      }
    });
  }
View Full Code Here

TOP

Related Classes of org.araneaframework.core.BaseService

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.