Java Doc for HttpServletRequestWrapper.java in  » 6.0-JDK-Core » Servlet-API-by-tomcat » javax » servlet » http » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » Servlet API by tomcat » javax.servlet.http 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   javax.servlet.ServletRequestWrapper
      javax.servlet.http.HttpServletRequestWrapper

HttpServletRequestWrapper
public class HttpServletRequestWrapper extends ServletRequestWrapper implements HttpServletRequest(Code)
Provides a convenient implementation of the HttpServletRequest 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.
See Also:   javax.servlet.http.HttpServletRequest
since:
   v 2.3



Constructor Summary
public  HttpServletRequestWrapper(HttpServletRequest request)
     Constructs a request object wrapping the given request.

Method Summary
public  StringgetAuthType()
     The default behavior of this method is to return getAuthType() on the wrapped request object.
public  StringgetContextPath()
     The default behavior of this method is to return getContextPath() on the wrapped request object.
public  Cookie[]getCookies()
     The default behavior of this method is to return getCookies() on the wrapped request object.
public  longgetDateHeader(String name)
     The default behavior of this method is to return getDateHeader(String name) on the wrapped request object.
public  StringgetHeader(String name)
     The default behavior of this method is to return getHeader(String name) on the wrapped request object.
public  EnumerationgetHeaderNames()
     The default behavior of this method is to return getHeaderNames() on the wrapped request object.
public  EnumerationgetHeaders(String name)
     The default behavior of this method is to return getHeaders(String name) on the wrapped request object.
public  intgetIntHeader(String name)
     The default behavior of this method is to return getIntHeader(String name) on the wrapped request object.
public  StringgetMethod()
     The default behavior of this method is to return getMethod() on the wrapped request object.
public  StringgetPathInfo()
     The default behavior of this method is to return getPathInfo() on the wrapped request object.
public  StringgetPathTranslated()
     The default behavior of this method is to return getPathTranslated() on the wrapped request object.
public  StringgetQueryString()
     The default behavior of this method is to return getQueryString() on the wrapped request object.
public  StringgetRemoteUser()
     The default behavior of this method is to return getRemoteUser() on the wrapped request object.
public  StringgetRequestURI()
     The default behavior of this method is to return getRequestURI() on the wrapped request object.
public  StringBuffergetRequestURL()
     The default behavior of this method is to return getRequestURL() on the wrapped request object.
public  StringgetRequestedSessionId()
     The default behavior of this method is to return getRequestedSessionId() on the wrapped request object.
public  StringgetServletPath()
     The default behavior of this method is to return getServletPath() on the wrapped request object.
public  HttpSessiongetSession(boolean create)
     The default behavior of this method is to return getSession(boolean create) on the wrapped request object.
public  HttpSessiongetSession()
     The default behavior of this method is to return getSession() on the wrapped request object.
public  java.security.PrincipalgetUserPrincipal()
     The default behavior of this method is to return getUserPrincipal() on the wrapped request object.
public  booleanisRequestedSessionIdFromCookie()
     The default behavior of this method is to return isRequestedSessionIdFromCookie() on the wrapped request object.
public  booleanisRequestedSessionIdFromURL()
     The default behavior of this method is to return isRequestedSessionIdFromURL() on the wrapped request object.
public  booleanisRequestedSessionIdFromUrl()
     The default behavior of this method is to return isRequestedSessionIdFromUrl() on the wrapped request object.
public  booleanisRequestedSessionIdValid()
     The default behavior of this method is to return isRequestedSessionIdValid() on the wrapped request object.
public  booleanisUserInRole(String role)
     The default behavior of this method is to return isUserInRole(String role) on the wrapped request object.


Constructor Detail
HttpServletRequestWrapper
public HttpServletRequestWrapper(HttpServletRequest request)(Code)
Constructs a request object wrapping the given request.
throws:
  java.lang.IllegalArgumentException - if the request is null




Method Detail
getAuthType
public String getAuthType()(Code)
The default behavior of this method is to return getAuthType() on the wrapped request object.



getContextPath
public String getContextPath()(Code)
The default behavior of this method is to return getContextPath() on the wrapped request object.



getCookies
public Cookie[] getCookies()(Code)
The default behavior of this method is to return getCookies() on the wrapped request object.



getDateHeader
public long getDateHeader(String name)(Code)
The default behavior of this method is to return getDateHeader(String name) on the wrapped request object.



getHeader
public String getHeader(String name)(Code)
The default behavior of this method is to return getHeader(String name) on the wrapped request object.



getHeaderNames
public Enumeration getHeaderNames()(Code)
The default behavior of this method is to return getHeaderNames() on the wrapped request object.



getHeaders
public Enumeration getHeaders(String name)(Code)
The default behavior of this method is to return getHeaders(String name) on the wrapped request object.



getIntHeader
public int getIntHeader(String name)(Code)
The default behavior of this method is to return getIntHeader(String name) on the wrapped request object.



getMethod
public String getMethod()(Code)
The default behavior of this method is to return getMethod() on the wrapped request object.



getPathInfo
public String getPathInfo()(Code)
The default behavior of this method is to return getPathInfo() on the wrapped request object.



getPathTranslated
public String getPathTranslated()(Code)
The default behavior of this method is to return getPathTranslated() on the wrapped request object.



getQueryString
public String getQueryString()(Code)
The default behavior of this method is to return getQueryString() on the wrapped request object.



getRemoteUser
public String getRemoteUser()(Code)
The default behavior of this method is to return getRemoteUser() on the wrapped request object.



getRequestURI
public String getRequestURI()(Code)
The default behavior of this method is to return getRequestURI() on the wrapped request object.



getRequestURL
public StringBuffer getRequestURL()(Code)
The default behavior of this method is to return getRequestURL() on the wrapped request object.



getRequestedSessionId
public String getRequestedSessionId()(Code)
The default behavior of this method is to return getRequestedSessionId() on the wrapped request object.



getServletPath
public String getServletPath()(Code)
The default behavior of this method is to return getServletPath() on the wrapped request object.



getSession
public HttpSession getSession(boolean create)(Code)
The default behavior of this method is to return getSession(boolean create) on the wrapped request object.



getSession
public HttpSession getSession()(Code)
The default behavior of this method is to return getSession() on the wrapped request object.



getUserPrincipal
public java.security.Principal getUserPrincipal()(Code)
The default behavior of this method is to return getUserPrincipal() on the wrapped request object.



isRequestedSessionIdFromCookie
public boolean isRequestedSessionIdFromCookie()(Code)
The default behavior of this method is to return isRequestedSessionIdFromCookie() on the wrapped request object.



isRequestedSessionIdFromURL
public boolean isRequestedSessionIdFromURL()(Code)
The default behavior of this method is to return isRequestedSessionIdFromURL() on the wrapped request object.



isRequestedSessionIdFromUrl
public boolean isRequestedSessionIdFromUrl()(Code)
The default behavior of this method is to return isRequestedSessionIdFromUrl() on the wrapped request object.



isRequestedSessionIdValid
public boolean isRequestedSessionIdValid()(Code)
The default behavior of this method is to return isRequestedSessionIdValid() on the wrapped request object.



isUserInRole
public boolean isUserInRole(String role)(Code)
The default behavior of this method is to return isUserInRole(String role) on the wrapped request object.



Methods inherited from javax.servlet.ServletRequestWrapper
public Object getAttribute(String name)(Code)(Java Doc)
public Enumeration getAttributeNames()(Code)(Java Doc)
public String getCharacterEncoding()(Code)(Java Doc)
public int getContentLength()(Code)(Java Doc)
public String getContentType()(Code)(Java Doc)
public ServletInputStream getInputStream() throws IOException(Code)(Java Doc)
public String getLocalAddr()(Code)(Java Doc)
public String getLocalName()(Code)(Java Doc)
public int getLocalPort()(Code)(Java Doc)
public Locale getLocale()(Code)(Java Doc)
public Enumeration getLocales()(Code)(Java Doc)
public String getParameter(String name)(Code)(Java Doc)
public Map getParameterMap()(Code)(Java Doc)
public Enumeration getParameterNames()(Code)(Java Doc)
public String[] getParameterValues(String name)(Code)(Java Doc)
public String getProtocol()(Code)(Java Doc)
public BufferedReader getReader() throws IOException(Code)(Java Doc)
public String getRealPath(String path)(Code)(Java Doc)
public String getRemoteAddr()(Code)(Java Doc)
public String getRemoteHost()(Code)(Java Doc)
public int getRemotePort()(Code)(Java Doc)
public ServletRequest getRequest()(Code)(Java Doc)
public RequestDispatcher getRequestDispatcher(String path)(Code)(Java Doc)
public String getScheme()(Code)(Java Doc)
public String getServerName()(Code)(Java Doc)
public int getServerPort()(Code)(Java Doc)
public boolean isSecure()(Code)(Java Doc)
public void removeAttribute(String name)(Code)(Java Doc)
public void setAttribute(String name, Object o)(Code)(Java Doc)
public void setCharacterEncoding(String enc) throws java.io.UnsupportedEncodingException(Code)(Java Doc)
public void setRequest(ServletRequest request)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.