List of usage examples for javax.servlet.http HttpServletRequestWrapper subclass-usage
From source file org.sarons.spring4me.web.widget.http.impl.DefaultHttpWidgetRequest.java
/**
*
* @author gavin
* @since 0.4.0
* @create Feb 12, 2012 - 11:30:42 AM
*/
From source file edu.cornell.mannlib.vitro.webapp.filestorage.uploadrequest.FileUploadServletRequest.java
/**
* <p>
* Wraps an HTTP request and parses it for file uploads, without losing the
* request parameters.
* </p>
* <p>
From source file org.dspace.app.webui.util.FileUploadRequest.java
/**
* Based on the com.oreilly.servlet.MultipartWrapper object, this is an HTTP
* request wrapper for multi-part (MIME) POSTs. It uses DSpace configuration
* properties to determine the temporary directory to use and the maximum
* allowable upload size.
*
From source file com.github.isrsal.logging.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.opa.web.servlet.request.OsgiPortalAppRequest.java
/**
* Override encodeURL methods to add Opa signature parameter.
*
* @author Maxime Bossard - 2013
*
*/
From source file appengine_commons.logger_filter.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 com.weitaomi.systemconfig.filter.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 com.intuit.autumn.web.InputStreamHttpServletRequestWrapper.java
/** * Wrapper object around HttpServletRequest to allow multiple readings of InputStream */ public class InputStreamHttpServletRequestWrapper extends HttpServletRequestWrapper {
From source file com.intuit.data.autumn.web.InputStreamHttpServletRequestWrapper.java
/** * Wrapper object around HttpServletRequest to allow multiple readings of InputStream */ public class InputStreamHttpServletRequestWrapper extends HttpServletRequestWrapper {
From source file org.musicrecital.webapp.filter.LocaleRequestWrapper.java
/** * HttpRequestWrapper overriding methods getLocale(), getLocales() to include * the user's preferred locale. */ public class LocaleRequestWrapper extends HttpServletRequestWrapper { private final transient Log log = LogFactory.getLog(LocaleRequestWrapper.class);