Java Doc for AttributeScopingRequestWrapper.java in  » Portal » uPortal_rel-2-6-1-GA » org » jasig » portal » servlet » Java Source Code / Java DocumentationJava Source Code and Java Documentation

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 geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Portal » uPortal_rel 2 6 1 GA » org.jasig.portal.servlet 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.jasig.portal.servlet.AttributeScopingRequestWrapper

AttributeScopingRequestWrapper
public class AttributeScopingRequestWrapper implements HttpServletRequest(Code)
HttpServletRequest wrapper that tracks a set of request attributes that are local to this request wrapper.
author:
   Eric Dalquist
version:
   $Id: AttributeScopingRequestWrapper.java,v 1.1 2006/04/25 22:15:26 dalquist Exp $



Constructor Summary
public  AttributeScopingRequestWrapper(HttpServletRequest request)
    

Method Summary
public  ObjectgetAttribute(String name)
     If the attribute isn't in the Map for this wrapper the wrapped request is consulted.
public  EnumerationgetAttributeNames()
     The set of attribute names is merged from the attributes stored in this request and the attributes from the parent requests.
public  StringgetAuthType()
    
public  StringgetCharacterEncoding()
    
public  intgetContentLength()
    
public  StringgetContentType()
    
public  StringgetContextPath()
    
public  Cookie[]getCookies()
    
public  longgetDateHeader(String arg0)
    
public  StringgetHeader(String arg0)
    
public  EnumerationgetHeaderNames()
    
public  EnumerationgetHeaders(String arg0)
    
public  ServletInputStreamgetInputStream()
    
public  intgetIntHeader(String arg0)
    
public  LocalegetLocale()
    
public  EnumerationgetLocales()
    
public  StringgetMethod()
    
public  StringgetParameter(String arg0)
    
public  MapgetParameterMap()
    
public  EnumerationgetParameterNames()
    
public  String[]getParameterValues(String arg0)
    
public  StringgetPathInfo()
    
public  StringgetPathTranslated()
    
public  StringgetProtocol()
    
public  StringgetQueryString()
    
public  BufferedReadergetReader()
    
public  StringgetRealPath(String arg0)
    
public  StringgetRemoteAddr()
    
public  StringgetRemoteHost()
    
public  StringgetRemoteUser()
    
public  RequestDispatchergetRequestDispatcher(String arg0)
    
public  StringgetRequestURI()
    
public  StringBuffergetRequestURL()
    
public  StringgetRequestedSessionId()
    
public  StringgetScheme()
    
public  MapgetScopedAttributeMap()
     Provides access to the attributes stored in this wrapper.
public  StringgetServerName()
    
public  intgetServerPort()
    
public  StringgetServletPath()
    
public  HttpSessiongetSession()
    
public  HttpSessiongetSession(boolean arg0)
    
public  PrincipalgetUserPrincipal()
    
public  booleanisRequestedSessionIdFromCookie()
    
public  booleanisRequestedSessionIdFromURL()
    
public  booleanisRequestedSessionIdFromUrl()
    
public  booleanisRequestedSessionIdValid()
    
public  booleanisSecure()
    
public  booleanisUserInRole(String arg0)
    
public  voidremoveAttribute(String name)
     Removes the attribute from this request and the wrapped request.
public  voidsetAttribute(String name, Object value)
     Stores the attribute in the request wrapper.
public  voidsetCharacterEncoding(String arg0)
    


Constructor Detail
AttributeScopingRequestWrapper
public AttributeScopingRequestWrapper(HttpServletRequest request)(Code)




Method Detail
getAttribute
public Object getAttribute(String name)(Code)
If the attribute isn't in the Map for this wrapper the wrapped request is consulted.
See Also:   javax.servlet.ServletRequest.getAttribute(java.lang.String)



getAttributeNames
public Enumeration getAttributeNames()(Code)
The set of attribute names is merged from the attributes stored in this request and the attributes from the parent requests.
See Also:   javax.servlet.ServletRequest.getAttributeNames



getAuthType
public String getAuthType()(Code)

See Also:   javax.servlet.http.HttpServletRequest.getAuthType



getCharacterEncoding
public String getCharacterEncoding()(Code)

See Also:   javax.servlet.ServletRequest.getCharacterEncoding



getContentLength
public int getContentLength()(Code)

See Also:   javax.servlet.ServletRequest.getContentLength



getContentType
public String getContentType()(Code)

See Also:   javax.servlet.ServletRequest.getContentType



getContextPath
public String getContextPath()(Code)

See Also:   javax.servlet.http.HttpServletRequest.getContextPath



getCookies
public Cookie[] getCookies()(Code)

See Also:   javax.servlet.http.HttpServletRequest.getCookies



getDateHeader
public long getDateHeader(String arg0)(Code)

See Also:   javax.servlet.http.HttpServletRequest.getDateHeader(java.lang.String)



getHeader
public String getHeader(String arg0)(Code)

See Also:   javax.servlet.http.HttpServletRequest.getHeader(java.lang.String)



getHeaderNames
public Enumeration getHeaderNames()(Code)

See Also:   javax.servlet.http.HttpServletRequest.getHeaderNames



getHeaders
public Enumeration getHeaders(String arg0)(Code)

See Also:   javax.servlet.http.HttpServletRequest.getHeaders(java.lang.String)



getInputStream
public ServletInputStream getInputStream() throws IOException(Code)

See Also:   javax.servlet.ServletRequest.getInputStream



getIntHeader
public int getIntHeader(String arg0)(Code)

See Also:   javax.servlet.http.HttpServletRequest.getIntHeader(java.lang.String)



getLocale
public Locale getLocale()(Code)

See Also:   javax.servlet.ServletRequest.getLocale



getLocales
public Enumeration getLocales()(Code)

See Also:   javax.servlet.ServletRequest.getLocales



getMethod
public String getMethod()(Code)

See Also:   javax.servlet.http.HttpServletRequest.getMethod



getParameter
public String getParameter(String arg0)(Code)

See Also:   javax.servlet.ServletRequest.getParameter(java.lang.String)



getParameterMap
public Map getParameterMap()(Code)

See Also:   javax.servlet.ServletRequest.getParameterMap



getParameterNames
public Enumeration getParameterNames()(Code)

See Also:   javax.servlet.ServletRequest.getParameterNames



getParameterValues
public String[] getParameterValues(String arg0)(Code)

See Also:   javax.servlet.ServletRequest.getParameterValues(java.lang.String)



getPathInfo
public String getPathInfo()(Code)

See Also:   javax.servlet.http.HttpServletRequest.getPathInfo



getPathTranslated
public String getPathTranslated()(Code)

See Also:   javax.servlet.http.HttpServletRequest.getPathTranslated



getProtocol
public String getProtocol()(Code)

See Also:   javax.servlet.ServletRequest.getProtocol



getQueryString
public String getQueryString()(Code)

See Also:   javax.servlet.http.HttpServletRequest.getQueryString



getReader
public BufferedReader getReader() throws IOException(Code)

See Also:   javax.servlet.ServletRequest.getReader



getRealPath
public String getRealPath(String arg0)(Code)

See Also:   javax.servlet.ServletRequest.getRealPath(java.lang.String)



getRemoteAddr
public String getRemoteAddr()(Code)

See Also:   javax.servlet.ServletRequest.getRemoteAddr



getRemoteHost
public String getRemoteHost()(Code)

See Also:   javax.servlet.ServletRequest.getRemoteHost



getRemoteUser
public String getRemoteUser()(Code)

See Also:   javax.servlet.http.HttpServletRequest.getRemoteUser



getRequestDispatcher
public RequestDispatcher getRequestDispatcher(String arg0)(Code)

See Also:   javax.servlet.ServletRequest.getRequestDispatcher(java.lang.String)



getRequestURI
public String getRequestURI()(Code)

See Also:   javax.servlet.http.HttpServletRequest.getRequestURI



getRequestURL
public StringBuffer getRequestURL()(Code)

See Also:   javax.servlet.http.HttpServletRequest.getRequestURL



getRequestedSessionId
public String getRequestedSessionId()(Code)

See Also:   javax.servlet.http.HttpServletRequest.getRequestedSessionId



getScheme
public String getScheme()(Code)

See Also:   javax.servlet.ServletRequest.getScheme



getScopedAttributeMap
public Map getScopedAttributeMap()(Code)
Provides access to the attributes stored in this wrapper. A READ-ONLY Map of the attributes stored in this wrapper.



getServerName
public String getServerName()(Code)

See Also:   javax.servlet.ServletRequest.getServerName



getServerPort
public int getServerPort()(Code)

See Also:   javax.servlet.ServletRequest.getServerPort



getServletPath
public String getServletPath()(Code)

See Also:   javax.servlet.http.HttpServletRequest.getServletPath



getSession
public HttpSession getSession()(Code)

See Also:   javax.servlet.http.HttpServletRequest.getSession



getSession
public HttpSession getSession(boolean arg0)(Code)

See Also:   javax.servlet.http.HttpServletRequest.getSession(boolean)



getUserPrincipal
public Principal getUserPrincipal()(Code)

See Also:   javax.servlet.http.HttpServletRequest.getUserPrincipal



isRequestedSessionIdFromCookie
public boolean isRequestedSessionIdFromCookie()(Code)

See Also:   javax.servlet.http.HttpServletRequest.isRequestedSessionIdFromCookie



isRequestedSessionIdFromURL
public boolean isRequestedSessionIdFromURL()(Code)

See Also:   javax.servlet.http.HttpServletRequest.isRequestedSessionIdFromURL



isRequestedSessionIdFromUrl
public boolean isRequestedSessionIdFromUrl()(Code)

See Also:   javax.servlet.http.HttpServletRequest.isRequestedSessionIdFromUrl



isRequestedSessionIdValid
public boolean isRequestedSessionIdValid()(Code)

See Also:   javax.servlet.http.HttpServletRequest.isRequestedSessionIdValid



isSecure
public boolean isSecure()(Code)

See Also:   javax.servlet.ServletRequest.isSecure



isUserInRole
public boolean isUserInRole(String arg0)(Code)

See Also:   javax.servlet.http.HttpServletRequest.isUserInRole(java.lang.String)



removeAttribute
public void removeAttribute(String name)(Code)
Removes the attribute from this request and the wrapped request.
See Also:   javax.servlet.ServletRequest.removeAttribute(java.lang.String)



setAttribute
public void setAttribute(String name, Object value)(Code)
Stores the attribute in the request wrapper.
See Also:   javax.servlet.ServletRequest.setAttribute(java.lang.Stringjava.lang.Object)



setCharacterEncoding
public void setCharacterEncoding(String arg0) throws UnsupportedEncodingException(Code)

See Also:   javax.servlet.ServletRequest.setCharacterEncoding(java.lang.String)



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.