Package com.elibom.jogger.middleware.router.interceptor

Examples of com.elibom.jogger.middleware.router.interceptor.Interceptor


        return;
      }

      // retrieve the interceptor and increase the index
      Interceptor interceptor = interceptors.get(index);
      index++;

      // execute the interceptor - notice that the interceptor can eventually call the proceed() method recursively.
      interceptor.intercept(request, response, this);
    }
View Full Code Here

TOP

Related Classes of com.elibom.jogger.middleware.router.interceptor.Interceptor

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.