Example usage for javax.servlet.http HttpServletRequestWrapper subclass-usage

List of usage examples for javax.servlet.http HttpServletRequestWrapper subclass-usage

Introduction

In this page you can find the example usage for javax.servlet.http HttpServletRequestWrapper subclass-usage.

Usage

From source file org.egov.restapi.filter.MultiReadHttpServletRequest.java

public class MultiReadHttpServletRequest extends HttpServletRequestWrapper {
    private ByteArrayOutputStream cachedBytes;

    public MultiReadHttpServletRequest(HttpServletRequest request) {
        super(request);
    }

From source file com.liferay.portal.upload.UploadServletRequestImpl.java

/**
 * @author Brian Wing Shun Chan
 * @author Zongliang Li
 * @author Harry Mark
 * @author Raymond Aug
 */

From source file org.apache.roller.weblogger.ui.core.filters.RoleAssignmentFilter.java

class RoleAssignmentRequestWrapper extends HttpServletRequestWrapper {
    private static Log log = LogFactory.getLog(RoleAssignmentRequestWrapper.class);

    public RoleAssignmentRequestWrapper(HttpServletRequest request) {
        super(request);
    }

From source file org.apache.beehive.netui.pageflow.scoping.internal.ScopedRequestImpl.java

/**
 * A wrapper around HttpServletRequest, associated with a given scope-key.  All calls to setAttribute,
 * getAttribute, removeAttribute, etc. are scoped to this object, while most other functionality
 * delegates to the wrapped HttpServletRequest.
 * Instances of this class also keep track of their own request-URIs, which are independent of the
 * wrapped request-URIs.

From source file org.mikha.utils.web.HttpParamsRequest.java

/**
 * Enhances standard {@link HttpServletRequest} with additional methods to
 * simplify parsing HTTP parameters.
 * @author mikha
 */
public class HttpParamsRequest extends HttpServletRequestWrapper {

From source file com.boylesoftware.web.impl.RouterRequestImpl.java

/**
 * {@link RouterRequest} implementation.
 *
 * @author Lev Himmelfarb
 */
class RouterRequestImpl extends HttpServletRequestWrapper implements RouterRequest, Poolable {

From source file org.silverpeas.servlet.HttpRequest.java

/**
 * An HTTP request decorating an HTTP servlet request with some additional methods and by changing
 * the implementation of some of its methods to take into account some Silverpeas specificities or
 * needs. For example, the <code>getParameter(java.lang.String)</code> method has been modified to
 * take into account also the parameters passed in a multipart/form-data stream.
 *

From source file org.ajax4jsf.request.MultipartRequest.java

/**
 * Request wrapper for supporting multipart requests, used for file uploading.
 *
 * @author Shane Bryzak
 */
public class MultipartRequest extends HttpServletRequestWrapper {

From source file org.opencms.flex.CmsFlexRequest.java

/**
 * Wrapper class for a HttpServletRequest.<p>
 *
 * This class wraps the standard HttpServletRequest so that it's output can be delivered to
 * the CmsFlexCache.<p>
 * 

From source file org.silverpeas.core.web.http.HttpRequest.java

/**
 * An HTTP request decorating an HTTP servlet request with some additional methods and by changing
 * the implementation of some of its methods to take into account some Silverpeas specificities or
 * needs. For example, the <code>getParameter(java.lang.String)</code> method has been modified to
 * take into account also the parameters passed in a multipart/form-data stream.
 *