List of usage examples for javax.servlet.http HttpServletRequestWrapper subclass-usage
From source file org.yestech.jmlnitrate.util.ServletRequestAdaptor.java
/**
* This class represents an Adaptor to a {@link ServletRequest} that adds the
* ability to add Parameters to the Request.
*
* @author Arthur Copeland
* @version $Revision: 3 $
From source file com.du.order.dist.log.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.minlia.cloud.framework.web.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 de.blizzy.documentr.web.util.FacadeHostRequestWrapper.java
public class FacadeHostRequestWrapper extends HttpServletRequestWrapper { private String documentrHost; FacadeHostRequestWrapper(HttpServletRequest request, String documentrHost) { super(request); this.documentrHost = documentrHost;
From source file attila.core.MultipartRequest.java
/**
* Wrapper for HttpServletRequest that handles requests of type
* POST with content type "multipart/form-data".
* @author Eric Andrews
* @author Kai Kousa
*/
From source file org.nuxeo.wss.servlet.HttpServletRequestWrapper.java
public class HttpServletRequestWrapper extends javax.servlet.http.HttpServletRequestWrapper { protected final Map<String, String> headers = new HashMap<String, String>(); public HttpServletRequestWrapper(HttpServletRequest request) { super(request);
From source file org.iqvis.nvolv3.request.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.heniktechnology.mobile_api.transaction_logger.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 net.sf.j2ep.servers.ClusterRequestWrapper.java
/**
* A wrapper for requests that will create it's own set
* of headers. The headers are the same except for
* cookies with a JSESSIONID that has a mark for a specific
* server. More information about this can be found in the
* ClusterServer
From source file org.springframework.web.multipart.support.AbstractMultipartHttpServletRequest.java
/**
* Abstract base implementation of the MultipartHttpServletRequest interface.
* Provides management of pre-generated MultipartFile instances.
* @author Juergen Hoeller
* @since 06.10.2003
*/