|
WebObjects 5.2.3 | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.webobjects.appserver.WOContext com.webobjects.jspservlet.WOServletContext
Subclass of WOContext providing custom URL generation, to account for JSP Session IDs.
This class is expected to be created at the appropriate time by calling the new
setContextClassName
API on WOApplication
. No change is necessary for most applications, unless
WOApplication.createContextForRequest
has been overridden to not call super()
. If
that is the case, you should subclass WOServletContext for your custom WOContext.
Nested Class Summary |
Nested classes inherited from class com.webobjects.foundation.NSKeyValueCoding |
NSKeyValueCoding.DefaultImplementation, NSKeyValueCoding.ErrorHandling, NSKeyValueCoding.Null, NSKeyValueCoding.UnknownKeyException, NSKeyValueCoding.Utility, NSKeyValueCoding.ValueAccessor |
Nested classes inherited from class com.webobjects.foundation.NSKeyValueCodingAdditions |
NSKeyValueCodingAdditions.DefaultImplementation, NSKeyValueCodingAdditions.Utility |
Field Summary |
Fields inherited from interface com.webobjects.foundation.NSKeyValueCoding |
NullValue |
Fields inherited from interface com.webobjects.foundation.NSKeyValueCodingAdditions |
KeyPathSeparator |
Constructor Summary | |
WOServletContext(WORequest aRequest)
Creates a new WOServletContext object with aRequest . |
Method Summary | |
javax.servlet.http.HttpServletRequest |
httpServletRequest()
Returns the HttpServletRequest. |
javax.servlet.http.HttpServletResponse |
httpServletResponse()
Returns the HttpServletResponse. |
javax.servlet.http.HttpSession |
httpSession()
Returns the HttpSession, if it exists. |
Object |
jspPage()
Returns the JSP page object that was part of the PageContext. |
javax.servlet.jsp.JspWriter |
jspWriter()
Returns the JspWriter that was part of the PageContext. |
javax.servlet.ServletConfig |
servletConfig()
Returns the ServletConfig. |
javax.servlet.ServletContext |
servletContext()
Returns the ServletContext. |
WOSession |
session()
Returns the object representing the receiving context's session, if one exists. |
Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public WOServletContext(WORequest aRequest)
aRequest
. The userInfo
dictionary
of aRequest
should contain at least the following: HttpServletRequest, HttpServletResponse
ServletConfig, ServletContext. Optionally (for JSP pages), PageContext should also
be included. The keys for the above objects are the same as the class of object.
If PageContext is included, the JSP page and JspWriter objects will be extracted from
the PageContext.
aRequest
- the WORequest the context should be created forMethod Detail |
public javax.servlet.http.HttpServletRequest httpServletRequest()
public javax.servlet.http.HttpServletResponse httpServletResponse()
public javax.servlet.http.HttpSession httpSession()
public Object jspPage()
public javax.servlet.jsp.JspWriter jspWriter()
public javax.servlet.ServletConfig servletConfig()
public javax.servlet.ServletContext servletContext()
public WOSession session()
session
in class WOContext
WOContext.component()
,
WOContext.page()
,
WOContext.request()
,
WOContext.response()
,
WOContext.hasSession()
,
WOSession
,
WOApplication.createSessionForRequest(WORequest request)
|
Last updated Thu Oct 21 15:04:16 PDT 2004. | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |