List of usage examples for javax.servlet.http HttpServletRequestWrapper subclass-usage
From source file org.deegree.securityproxy.filter.RequestBodyWrapper.java
/**
* Wraps a {@link HttpServletRequest} and allows reading the stream multiple times.
*
* @author <a href="mailto:goltz@lat-lon.de">Lyn Goltz</a>
* @author last edited by: $Author: lyn $
*
From source file org.infoglue.deliver.portal.information.ServletRequestIG.java
/** * @author jand * */ public class ServletRequestIG extends HttpServletRequestWrapper { private static final Log log = LogFactory.getLog(ServletRequestIG.class);
From source file org.seasar.teeda.extension.filter.MultipartFormDataRequestWrapper.java
/** * @author koichik */ public class MultipartFormDataRequestWrapper extends HttpServletRequestWrapper { public static final String WWW_FORM_URLENCODED_TYPE = "application/x-www-form-urlencoded";
From source file org.apache.click.ClickRequestWrapper.java
/** * Provides a custom HttpServletRequest class for shielding users from * multipart request parameters. Thus calling request.getParameter(String) * will still work properly. */ class ClickRequestWrapper extends HttpServletRequestWrapper {
From source file com.surevine.alfresco.audit.MultiReadHttpServletRequest.java
public class MultiReadHttpServletRequest extends HttpServletRequestWrapper { private static final Logger logger = Logger.getLogger(MultiReadHttpServletRequest.class); private static final int CACHE_INITIAL_SIZE = 1024 * 1024; // Start with a 1MB cache private static final int CACHE_MAX_MEMORY_SIZE = 10 * 1024 * 1024; // We will cache up to 10MB before using disk private static final int CACHE_INCREASE_SIZE = 1024 * 1024; // We will increase the size by 1MB each time
From source file org.hdiv.filter.RequestWrapper.java
/**
* A wrapper for HTTP servlet request.
*
* @author Roberto Velasco
* @author Gorka Vicente
* @see javax.servlet.http.HttpServletRequestWrapper
From source file ren.hankai.cordwood.web.support.MultiReadHttpServletRequest.java
/**
* ???Http Servlet
*
* @author hankai
* @version 1.0.0
* @since Nov 26, 2018 4:41:17 PM
From source file org.biokoframework.http.RequestWrapper.java
public class RequestWrapper extends HttpServletRequestWrapper { private static final String CRLF = "\r\n"; private byte[] body; private HttpServletRequest _request;
From source file org.infoglue.deliver.applications.filters.PortalServletRequest.java
public class PortalServletRequest extends HttpServletRequestWrapper { private static final Log log = LogFactory.getLog(PortalServletRequest.class); public static final String MULTI_VALUE = PathParser.MULTI_VALUE; private Map paramMap;
From source file org.mskcc.cbio.portal.util.XssRequestWrapper.java
/**
* Wrapper designed for all requests.
*
* <P>This class uses the Apache Commons
* <a href='http://commons.apache.org/fileupload/'>File Upload tool</a>.
* The generous Apache License will very likely allow you to use it in your