List of usage examples for javax.servlet.http HttpServletRequestWrapper subclass-usage
From source file com.mockey.server.RedoRequestWrapper.java
public class RedoRequestWrapper extends HttpServletRequestWrapper { private String body = ""; private Map parameterMap = new HashMap(); private Map headerMap = new HashMap(); private String contentType = ""; private String requestURI = "";
From source file org.apache.oltu.oauth2.ext.dynamicreg.server.request.JSONHttpServletRequestWrapper.java
/** * */ public class JSONHttpServletRequestWrapper extends HttpServletRequestWrapper { private Logger log = LoggerFactory.getLogger(JSONHttpServletRequestWrapper.class);
From source file org.apache.hadoop.gateway.identityasserter.filter.IdentityAsserterHttpServletRequestWrapper.java
public class IdentityAsserterHttpServletRequestWrapper extends HttpServletRequestWrapper { private static IdentityAsserterMessages log = MessagesFactory.get(IdentityAsserterMessages.class); private static final String PRINCIPAL_PARAM = "user.name"; private static final String DOAS_PRINCIPAL_PARAM = "doAs";
From source file com.demandware.vulnapp.servlet.DIVAServletRequestWrapper.java
/**
* Wraps the regular request to add knowledge of the response, and create a Map
* of random information. I chose against using the attribute system as it was having problems
* during type conversion.
* This class is also in charge of setting up knowledge of authorization for a request.
*
From source file net.paoding.rose.web.portal.impl.PortalRequest.java
/**
* ?Portal???
*
* @author [qieqie.wang@gmail.com]
*
*/
From source file org.apache.servicecomb.foundation.vertx.http.StandardHttpServletRequestEx.java
public class StandardHttpServletRequestEx extends HttpServletRequestWrapper implements HttpServletRequestEx { private BodyBufferSupport bodyBuffer = new BodyBufferSupportImpl(); private boolean cacheRequest; private ServletInputStream inputStream;
From source file com.laxser.blitz.web.portal.impl.PortalRequest.java
/**
* ?Portal???
*
*@author laxser Date 2012-3-23 ?4:56:41
@contact [duqifan@gmail.com]
@PortalRequest.java
From source file com.sinosoft.one.mvc.web.portal.impl.PortalRequest.java
/**
* ?Portal???
*
*
*
*/
From source file org.apache.chemistry.opencmis.server.impl.browser.POSTHttpServletRequestWrapper.java
public class POSTHttpServletRequestWrapper extends HttpServletRequestWrapper { private final boolean isMultipart; private Map<String, String[]> parameters; private String filename; private String contentType; private BigInteger size;
From source file fr.paris.lutece.portal.web.upload.MultipartHttpServletRequest.java
/** * This class provides a Wrapper of an HTTP request that handle multipart content */ public class MultipartHttpServletRequest extends HttpServletRequestWrapper { private final Map<String, FileItem> _multipartFiles; private final Map<String, String[]> _stringParameters;