Example usage for org.springframework.web.context.request WebRequestInterceptor interface-usage

List of usage examples for org.springframework.web.context.request WebRequestInterceptor interface-usage

Introduction

In this page you can find the example usage for org.springframework.web.context.request WebRequestInterceptor interface-usage.

Usage

From source file org.qi4j.samples.dddsample.spring.assembly.WebRequestInterceptorOverride.java

public interface WebRequestInterceptorOverride extends WebRequestInterceptor {
    public void afterCompletion(WebRequest request, @Optional Exception ex) throws Exception;
}

From source file abid.password.springmvc.FeedbackInterceptor.java

public class FeedbackInterceptor implements WebRequestInterceptor {

    public static final String FEEDBACK_MESSAGE_ATT = "feedbackMessages";

    private FeedbackMessage feedbackMessage;

From source file org.grails.datastore.mapping.web.support.OpenSessionInViewInterceptor.java

/**
 * A {@link org.springframework.web.context.request.WebRequestInterceptor} instance that
 * handles opening a Datastore session within the scope of a request
 */
public class OpenSessionInViewInterceptor implements WebRequestInterceptor {

From source file org.springframework.datastore.mapping.web.support.OpenSessionInViewInterceptor.java

/**
 * A {@link org.springframework.web.context.request.WebRequestInterceptor} instance that
 * handles opening a Datastore session within the scope of a request
 */
public class OpenSessionInViewInterceptor implements WebRequestInterceptor {

From source file org.springframework.orm.jdo.support.OpenPersistenceManagerInViewInterceptor.java

/**
 * Spring web request interceptor that binds a JDO PersistenceManager to the
 * thread for the entire processing of the request. Intended for the "Open
 * PersistenceManager in View" pattern, i.e. to allow for lazy loading in
 * web views despite the original transactions already being completed.
 *