Package net.sourceforge.stripes.controller

Examples of net.sourceforge.stripes.controller.BeforeAfterMethodInterceptor


    }

    /** Instantiates the core interceptors, allowing subclasses to override the default behavior */
    protected Map<LifecycleStage, Collection<Interceptor>> initCoreInterceptors() {
        Map<LifecycleStage, Collection<Interceptor>> interceptors = new HashMap<LifecycleStage, Collection<Interceptor>>();
        addInterceptor(interceptors, new BeforeAfterMethodInterceptor());
        addInterceptor(interceptors, new HttpCacheInterceptor());
        return interceptors;
    }
View Full Code Here


    }

    /** Instantiates the core interceptors, allowing subclasses to override the default behavior */
    protected Map<LifecycleStage, Collection<Interceptor>> initCoreInterceptors() {
        Map<LifecycleStage, Collection<Interceptor>> interceptors = new HashMap<LifecycleStage, Collection<Interceptor>>();
        addInterceptor(interceptors, new BeforeAfterMethodInterceptor());
        addInterceptor(interceptors, new HttpCacheInterceptor());
        return interceptors;
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.stripes.controller.BeforeAfterMethodInterceptor

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.