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

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


   * @param interceptor the interceptor object to be added.
   * @param paths the paths in which this interceptor will be invoked, an empty array to respond to all paths.
   */
  public void addInterceptor(Interceptor interceptor, String... paths) {
    Preconditions.notNull(interceptor, "no interceptor provided");
    interceptors.add(new InterceptorEntry(interceptor, paths));
  }
View Full Code Here

TOP

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

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.