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 com.persistent.cloudninja.utils.RoleBasedAccessControlInterceptor.java

/**
 * 
 * Class for checking Role BAsed Authorization
 */
public class RoleBasedAccessControlInterceptor extends HandlerInterceptorAdapter {
    private static final Logger logger = Logger.getLogger(RoleBasedAccessControlInterceptor.class);

From source file cn.loveapple.service.interceptor.front.core.ResponseInterceptor.java

/**
 * @author $author:$
 * @version $Revision$
 * @date $Date$
 * @id $Id$
 *

From source file org.jtalks.jcommune.web.interceptors.SapeInterceptor.java

/**
 * <b>Objectives:</b> put some links to every page user views.<br/>
 * <b>Details: </b> initializes {@link javasape.Sape} object on application start. JavaSapeInterceptor sends request
 * to SAPE.ru  provider with specific account ID and sets sape content to parameters of each request.
 *
 * @author elepaeva

From source file org.springframework.boot.actuate.endpoint.mvc.MvcEndpointSecurityInterceptor.java

/**
 * Security interceptor for MvcEndpoints.
 *
 * @author Madhura Bhave
 * @since 1.5.0
 */

From source file org.jasig.portal.url.MaxInactiveInterceptor.java

public class MaxInactiveInterceptor extends HandlerInterceptorAdapter {
    protected final Log log = LogFactory.getLog(getClass());
    private IPersonManager personManager;
    private IAuthorizationService authorizationService;

    @Autowired

From source file biz.letsweb.lukasfloorspring.interceptors.MobileInterceptor.java

public class MobileInterceptor extends HandlerInterceptorAdapter {

    /**
     * The name of the mobile view that the viewer is re-directed to in the event that a mobile device
     * is detected.
     */

From source file com.erudika.scoold.utils.ScooldRequestInterceptor.java

import org.springframework.web.servlet.handler.HandlerInterceptorAdapter;

/**
 *
 * @author Alex Bogdanovski [alex@erudika.com]
 */

From source file org.springframework.cloud.sleuth.instrument.web.TraceHandlerInterceptor.java

/**
 * {@link org.springframework.web.servlet.HandlerInterceptor} that wraps handling of a
 * request in a Span. Adds tags related to the class and method name.
 *
 * The interceptor will not create spans for error controller related paths.
 *

From source file org.jasig.cas.nhnent.web.support.AbstractThrottledSubmissionHandlerInterceptorAdapterFonNhn.java

/**
 * Abstract implementation of the handler that has all of the logic.  Encapsulates the logic in case we get it wrong!
 *
 * @author Scott Battaglia
 * @since 3.3.5
 */

From source file org.apereo.portal.url.MaxInactiveInterceptor.java

public class MaxInactiveInterceptor extends HandlerInterceptorAdapter {

    // IPerson attribute key to flag if this value has already been set
    private static final String SESSION_MAX_INACTIVE_SET_ATTR = "MAX_INACTIVE_SET";
    protected final Log log = LogFactory.getLog(getClass());
    private IPersonManager personManager;