Example usage for org.springframework.web.servlet.handler HandlerInterceptorAdapter subclass-usage

List of usage examples for org.springframework.web.servlet.handler HandlerInterceptorAdapter subclass-usage

Introduction

In this page you can find the example usage for org.springframework.web.servlet.handler HandlerInterceptorAdapter subclass-usage.

Usage

From source file gumga.framework.security.GumgaRequestFilter.java

/**
 * @author munif
 */
public class GumgaRequestFilter extends HandlerInterceptorAdapter {

    private static final Logger log = LoggerFactory.getLogger(HandlerInterceptorAdapter.class);

From source file net.cloudkit.enterprises.infrastructure.commons.ExecuteTimeInterceptor.java

/**
 * ExecuteTimeInterceptor.java
 *
 * @author hongquanli <hongquanli@qq.com>
 * @version 1.0 201418 ?1:05:44
 */

From source file net.cloudkit.flowportal.infrastructure.commons.ExecuteTimeInterceptor.java

/**
 * ExecuteTimeInterceptor.java
 *
 * @author hongquanli <hongquanli@qq.com>
 * @version 1.0 201418 ?1:05:44
 */

From source file org.atlasapi.application.auth.OAuthInterceptor.java

public class OAuthInterceptor extends HandlerInterceptorAdapter {
    private final ResponseWriterFactory writerResolver = new ResponseWriterFactory();
    private final UserFetcher userFetcher;
    private final NumberToShortStringCodec idCodec;
    private final Set<String> exemptions;
    private final Set<String> urlsToProtect;

From source file ru.org.linux.spring.Perf4jHandlerInterceptor.java

public class Perf4jHandlerInterceptor extends HandlerInterceptorAdapter {
    private static final String ATTRIBUTE = "perf4jStopWatch";
    private static final int TIME_THRESHOLD = 500;

    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler)

From source file org.ualerts.chat.web.context.ChatClientContextInterceptor.java

/**
 * A ChatClientContext that is a HandlerInterceptorAdapter and stores the 
 * ChatClient into the Http Session.  Upon each request, it pulls the ChatClient
 * out of the session and stores it in a ThreadLocal. When the request is
 * finished, the ChatClient is again stored in the Session.
 *

From source file io.gumga.security.GumgaRequestFilter.java

/**
 * @author munif
 */
public class GumgaRequestFilter extends HandlerInterceptorAdapter {

    private static final Logger log = LoggerFactory.getLogger(HandlerInterceptorAdapter.class);

From source file com.goldengekko.meetr.web.MultiplexInterceptor.java

/**
 *
 * @author sosandstrom
 */
public class MultiplexInterceptor extends HandlerInterceptorAdapter {

From source file org.bedework.eventreg.web.InitHandlers.java

/**
 * @author douglm
 *
 */
public class InitHandlers extends HandlerInterceptorAdapter {
    protected final Log logger = LogFactory.getLog(getClass());

From source file org.jtalks.common.web.util.UserDataInterceptor.java

/**
 * Add user data that should be available on all pages.
 *
 * @author Kirill Afonin
 */
public class UserDataInterceptor extends HandlerInterceptorAdapter {