Start line:  
End line:  

Snippet Preview

Snippet HTML Code

Stack Overflow Questions
Copyright 2003-2004 The Apache Software Foundation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 
 
 //
 // This source code implements specifications defined by the Java
 // Community Process. In order to remain compliant with the specification
 // DO NOT add / change / or delete method signatures!
 //
 
 package javax.servlet;
 
 import java.util.Map;

Provides a convenient implementation of the ServletRequest interface that can be subclassed by developers wishing to adapt the request to a Servlet. This class implements the Wrapper or Decorator pattern. Methods default to calling through to the wrapped request object.

Version:
$Rev: 46019 $ $Date: 2004-09-14 04:56:06 -0500 (Tue, 14 Sep 2004) $
Since:
Servlet 2.3
See also:
ServletRequest
 
 public class ServletRequestWrapper implements ServletRequest {
     private ServletRequest request;

    
Creates a ServletRequest adaptor wrapping the given request object.

Throws:
java.lang.IllegalArgumentException if the request is null
 
     public ServletRequestWrapper(ServletRequest request) {
         if (request == null) {
             throw new IllegalArgumentException("Request cannot be null");
         }
         this. = request;
     }

    
Return the wrapped request object.
 
     public ServletRequest getRequest() {
         return this.;
     }

    
Sets the request object being wrapped.

Throws:
java.lang.IllegalArgumentException if the request is null.
 
     public void setRequest(ServletRequest request) {
         if (request == null) {
             throw new IllegalArgumentException("Request cannot be null");
         }
         this. = request;
     }

    
The default behavior of this method is to call getAttribute(String name) on the wrapped request object.
 
     public Object getAttribute(String name) {
         return this..getAttribute(name);
     }

    
The default behavior of this method is to return getAttributeNames() on the wrapped request object.
 
     public Enumeration getAttributeNames() {
         return this..getAttributeNames();
     }

    
The default behavior of this method is to return getCharacterEncoding() on the wrapped request object.
 
     public String getCharacterEncoding() {
         return this..getCharacterEncoding();
     }

    
The default behavior of this method is to set the character encoding on the wrapped request object.
    public void setCharacterEncoding(String encthrows java.io.UnsupportedEncodingException {
        this..setCharacterEncoding(enc);
    }

    
The default behavior of this method is to return getContentLength() on the wrapped request object.
    public int getContentLength() {
        return this..getContentLength();
    }

    
The default behavior of this method is to return getContentType() on the wrapped request object.
    public String getContentType() {
        return this..getContentType();
    }

    
The default behavior of this method is to return getInputStream() on the wrapped request object.
    public ServletInputStream getInputStream() throws IOException {
        return this..getInputStream();
    }

    
The default behavior of this method is to return getParameter(String name) on the wrapped request object.
    public String getParameter(String name) {
        return this..getParameter(name);
    }

    
The default behavior of this method is to return getParameterMap() on the wrapped request object.
    public Map getParameterMap() {
        return this..getParameterMap();
    }

    
The default behavior of this method is to return getParameterNames() on the wrapped request object.
    public Enumeration getParameterNames() {
        return this..getParameterNames();
    }

    
The default behavior of this method is to return getParameterValues(String name) on the wrapped request object.
    public String[] getParameterValues(String name) {
        return this..getParameterValues(name);
    }

    
The default behavior of this method is to return getProtocol() on the wrapped request object.
    public String getProtocol() {
        return this..getProtocol();
    }

    
The default behavior of this method is to return getScheme() on the wrapped request object.
    public String getScheme() {
        return this..getScheme();
    }

    
The default behavior of this method is to return getServerName() on the wrapped request object.
    public String getServerName() {
        return this..getServerName();
    }

    
The default behavior of this method is to return getServerPort() on the wrapped request object.
    public int getServerPort() {
        return this..getServerPort();
    }

    
The default behavior of this method is to return getReader() on the wrapped request object.
    public BufferedReader getReader() throws IOException {
        return this..getReader();
    }

    
The default behavior of this method is to return getRemoteAddr() on the wrapped request object.
    public String getRemoteAddr() {
        return this..getRemoteAddr();
    }

    
The default behavior of this method is to return getRemoteHost() on the wrapped request object.
    public String getRemoteHost() {
        return this..getRemoteHost();
    }

    
The default behavior of this method is to return setAttribute(String name, Object o) on the wrapped request object.
    public void setAttribute(String nameObject o) {
        this..setAttribute(nameo);
    }

    
The default behavior of this method is to call removeAttribute(String name) on the wrapped request object.
    public void removeAttribute(String name) {
        this..removeAttribute(name);
    }

    
The default behavior of this method is to return getLocale() on the wrapped request object.
    public Locale getLocale() {
        return this..getLocale();
    }

    
The default behavior of this method is to return getLocales() on the wrapped request object.
    public Enumeration getLocales() {
        return this..getLocales();
    }

    
The default behavior of this method is to return isSecure() on the wrapped request object.
    public boolean isSecure() {
        return this..isSecure();
    }

    
The default behavior of this method is to return getRequestDispatcher(String path) on the wrapped request object.
        return this..getRequestDispatcher(path);
    }

    
The default behavior of this method is to return getRealPath(String path) on the wrapped request object.
    public String getRealPath(String path) {
        return this..getRealPath(path);
    }

    
The default behavior of this method is to return getRemotePort() on the wrapped request object.

Since:
Servlet 2.4
    public int getRemotePort() {
        return this..getRemotePort();
    }

    
The default behavior of this method is to return getLocalName() on the wrapped request object.

Since:
Servlet 2.4
    public String getLocalName() {
        return this..getLocalName();
    }

    
The default behavior of this method is to return getLocalAddr() on the wrapped request object.

Since:
Servlet 2.4
    public String getLocalAddr() {
        return this..getLocalAddr();
    }

    
The default behavior of this method is to return getLocalPort() on the wrapped request object.

Since:
Servlet 2.4
    public int getLocalPort() {
        return this..getLocalPort();
    }
New to GrepCode? Check out our FAQ X