List of usage examples for javax.servlet.http HttpServletRequestWrapper subclass-usage
From source file org.openfaces.util.FileUploadRequestWrapper.java
public class FileUploadRequestWrapper extends HttpServletRequestWrapper { private static final String FIELD_NAME = "::inputs::input"; public FileUploadRequestWrapper(HttpServletRequest request, String tempDirPath, final long maxSizeOfFile, String uniqueFileId) {
From source file org.fenixedu.academic.ui.struts.action.teacher.siteArchive.streams.FetcherRequestWrapper.java
/**
* This request wrapper is used to ensure that the original request remains
* unchanged. All elements that can be changed in a request are handled locally
* and changes are not propagated to the wrapped request.
*
* @author cfgi
From source file net.ymate.platform.webmvc.support.MultipartRequestWrapper.java
/**
* ?"multipart/form-data"
*
* @author (suninformation@163.com) on 2011-8-5 ?10:19:47
* @version 1.0
*/
From source file net.formio.servlet.ServletFileUploadWrapper.java
/**
* Wrapper for a file upload servlet request.
* <p>
* This class uses the Apache Commons <a
* href='http://commons.apache.org/fileupload/'>File Upload tool</a>.
* </p>
From source file com.zk.common.waf.request.WafRequestWrapper.java
/**
* Request
* <p>
* @author hubin
* @Date 2014-5-8
*/
From source file eu.freme.broker.tools.loggingfilter.RequestWrapper.java
public class RequestWrapper extends HttpServletRequestWrapper { private final ByteArrayOutputStream bos = new ByteArrayOutputStream(); private long id; public RequestWrapper(Long requestId, HttpServletRequest request) {
From source file fr.mby.saml2.sp.impl.web.Saml20RequestWrapper.java
/**
* HTTP Servlet Request Wrapper which process a SAML 2.0 response and retrieve parameters of initial CAS Request.
*
* @author GIP RECIA 2012 - Maxime BOSSARD.
*
*/
From source file org.wso2.carbon.identity.application.authentication.framework.model.AuthenticationFrameworkWrapper.java
/** * This class is used as a wrapper to the incoming http request to authentication framework. * On the arrival of a request to authentication endpoint. The request will be wrapped from this * wrapper with all the information in the AuthenticationRequestCache */ public class AuthenticationFrameworkWrapper extends HttpServletRequestWrapper {
From source file org.seasar.cadhelin.MultipartRequestWrapper.java
/**
* This class functions as a wrapper around HttpServletRequest to
* provide working getParameter methods for multipart requests. Once
* Struts requires Servlet 2.3, this class will definately be changed to
* extend javax.servlet.http.HttpServletRequestWrapper instead of
* implementing HttpServletRequest. Servlet 2.3 methods are implemented
From source file com.twinsoft.convertigo.engine.util.HttpServletRequestTwsWrapper.java
public class HttpServletRequestTwsWrapper extends HttpServletRequestWrapper { protected Map<String, String[]> parameters = new HashMap<String, String[]>(); protected String query = null; public HttpServletRequestTwsWrapper(HttpServletRequest request) { super(request);