List of usage examples for javax.servlet.http HttpServletRequestWrapper subclass-usage
From source file com.takin.mvc.mvc.client.UploadRequest.java
/**
*
* ?
*
*
* @author lemon
From source file org.craftercms.studio.impl.v1.web.http.MultiReadHttpServletRequestWrapper.java
public class MultiReadHttpServletRequestWrapper extends HttpServletRequestWrapper { public static final String UTF8 = "UTF-8"; public static final Charset UTF8_CHARSET = Charset.forName(UTF8); private ByteArrayOutputStream cachedBytes; private Map<String, String[]> parameterMap;
From source file org.owasp.esapi.waf.internal.InterceptingHTTPServletRequest.java
/**
* The wrapper for the HttpServletRequest object which will be passed to the application
* being protected by the WAF. It contains logic for parsing multipart parameters out of
* the request and provided downstream application logic a way of accessing it like it
* hasn't been touched.
*
From source file org.xchain.framework.servlet.MultipartFormDataServletRequest.java
/**
*
* This code was adapted from code originally written by Darius Robinson.
*
* @author Darius Robinson
* @author Christian Trimble
From source file com.aplos.core.listeners.MultipartRequest.java
public class MultipartRequest extends HttpServletRequestWrapper { private static final Logger logger = Logger.getLogger(MultipartRequest.class.getName()); private Map<String, List<String>> formParams;
From source file com.esri.gpt.control.filter.MultipartWrapper.java
/**
* HTTP servlet request wrapper for a multipart requests.
* <p>
* The wrapper uses the org.apache.commons.fileupload package for
* parsing and handling the incoming request.
* <p>
From source file eu.webtoolkit.jwt.servlet.WebRequest.java
/**
* A WebRequest which wraps the HttpServletRequest to add support for file uploads and
* testing.
* <p>
* WebRequest is used instead of HttpServletRequest inside JWt's request handling,
* and also in {@link WResource#handleRequest(WebRequest request, WebResponse response)}.
From source file org.apache.hadoop.gateway.filter.IdentityAssertionHttpServletRequestWrapper.java
public class IdentityAssertionHttpServletRequestWrapper extends HttpServletRequestWrapper { private static final String PRINCIPAL_PARAM = "user.name"; String username = null;
From source file org.fcrepo.server.security.servletfilters.ExtendedHttpServletRequestWrapper.java
/** * @author Bill Niebel */ public class ExtendedHttpServletRequestWrapper extends HttpServletRequestWrapper implements ExtendedHttpServletRequest {
From source file fedora.server.security.servletfilters.ExtendedHttpServletRequestWrapper.java
/** * @author Bill Niebel */ public class ExtendedHttpServletRequestWrapper extends HttpServletRequestWrapper implements ExtendedHttpServletRequest {