List of usage examples for javax.servlet.http HttpServletRequestWrapper subclass-usage
From source file org.znerd.yaff.MultipartServletRequestWrapper.java
/**
* Servlet request wrapper to support RFC 1867 multipart form submissions.
* Note that all file uploads will be stored in memory, inside the request.
* All metadata, such as the file names, will be lost, only the file contents
* are available.
*
From source file org.mifos.framework.servlet.ModifiableParameterServletRequest.java
@Deprecated // used only in reporting @SuppressWarnings("deprecation") public class ModifiableParameterServletRequest extends HttpServletRequestWrapper { List<String> removedParameterList; public ModifiableParameterServletRequest(HttpServletRequest originalRequest) {
From source file org.forgerock.openam.forgerockrest.authn.core.RestAuthHttpRequestWrapper.java
/**
* A HttpServletRequest Wrapper which allows package local classes to add additional parameters to the Http Request.
* <p>
* This is purely required for converting logic and parameters from the new REST Authentication endpoint to parameters
* the underlying legacy authentication framework expects for composite advice functions and no session issuing.
*
From source file com.proofpoint.http.server.GZipRequestWrapper.java
class GZipRequestWrapper extends HttpServletRequestWrapper { private final HttpServletRequest request; public GZipRequestWrapper(HttpServletRequest request) { super(request); this.request = request;
From source file org.kuali.rice.ksb.security.SignatureVerifyingRequestWrapper.java
/**
* An HttpServletRequestWrapper which will wraps the underlying request's InputStream in a
* SignatureVerifyingInputStream which will verify the digital signature of the request after
* all of the data has been read from the input stream.
*
* @author Kuali Rice Team (rice.collab@kuali.org)
From source file net.gplatform.sudoor.server.security.model.MultipleReadRequestWrapper.java
/** * No empty constructor so can not use annotation Component * @author xufucheng * */ public class MultipleReadRequestWrapper extends HttpServletRequestWrapper {
From source file com.doculibre.constellio.utils.SimpleParamsHttpServletRequestWrapper.java
public class SimpleParamsHttpServletRequestWrapper extends HttpServletRequestWrapper { private SimpleParams simpleParams; public SimpleParamsHttpServletRequestWrapper(HttpServletRequest request, SimpleParams simpleParams) { super(request);
From source file de.micromata.genome.gwiki.page.impl.actionbean.CommonMultipartRequest.java
public class CommonMultipartRequest extends HttpServletRequestWrapper { private Map<String, String[]> multipartParams; private Map<String, FileItem> fileItems; public CommonMultipartRequest(HttpServletRequest request) {
From source file com.iorga.iraj.security.MultiReadHttpServletRequest.java
public class MultiReadHttpServletRequest extends HttpServletRequestWrapper { private final byte[] body; public MultiReadHttpServletRequest(final HttpServletRequest httpServletRequest) throws IOException { super(httpServletRequest); // Read the request body and save it as a byte array
From source file com.sap.dirigible.ide.bridge.ext.XSSRequestWrapper.java
public class XSSRequestWrapper extends HttpServletRequestWrapper { public XSSRequestWrapper(HttpServletRequest request) { super(request); }