Package br.com.caelum.vraptor.events

Examples of br.com.caelum.vraptor.events.EndOfInterceptorStack


  @Override
  public void next(ControllerMethod method, Object controllerInstance) throws InterceptionException {
    Iterator<InterceptorHandler> iterator = internalStack.peek();

    if (!iterator.hasNext()) {
      event.fire(new EndOfInterceptorStack(controllerMethod.get(), controllerInstance));
      logger.debug("All registered interceptors have been called. End of VRaptor Request Execution.");
      return;
    }
    InterceptorHandler handler = iterator.next();
    handler.execute(this, method, controllerInstance);
View Full Code Here

TOP

Related Classes of br.com.caelum.vraptor.events.EndOfInterceptorStack

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.