Package org.gatein.cdi.wrappers

Examples of org.gatein.cdi.wrappers.HttpServletActionRequestWrapper


     * @see javax.portlet.filter.ActionFilter#doFilter(javax.portlet.ActionRequest, javax.portlet.ActionResponse, javax.portlet.filter.FilterChain)
     */
    @Override
    public void doFilter(ActionRequest request, ActionResponse response, FilterChain chain) throws IOException,
            PortletException {
        chain.doFilter(new HttpServletActionRequestWrapper(request), response);
    }
View Full Code Here

TOP

Related Classes of org.gatein.cdi.wrappers.HttpServletActionRequestWrapper

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.