|
Method: getAuthType()
Property name: AuthType
|
Returns a string (PyString) describing the name of the
authentication type. The value is None if the user is
notauthenticated.
|
|
Method: getContextPath()
Property name: contextPath
|
Returns a string (PyString) describing the path information that
identifies the context requested.
|
|
Method: getCookies()
Property name: cookies()
|
Returns all cookies sent with the client's request as an array of javax.servlet.http.Cookie
objects.
|
|
Method: getDateHeader(name)
|
Retrieves the value of the specified header as a long type.
|
|
Method: getHeader(name)
|
Returns the value of the specified header as string (PyString).
|
|
Method: getHeaderNames()
Property name: headerNames
|
Returns all the header names contained within the request as an
Enumeration.
|
|
Method: getHeaders(name)
|
Returns all the values of the specified header name as an
Enumeration.
|
|
Method: getIntHeader(name)
|
Retrieves the specified header value as a Java int, which
Jython converts to a PyInteger.
|
|
Method: getMethod()
Property name: method
|
Returns the type of request made a string.
|
|
Method: getPathInfo()
Property name: pathInfo
|
All extra path information sent by the client.
|
|
Method: getPathTranslated()
Property name: pathTranslated
|
Returns the real path derived from extra path information in the
client's request.
|
|
Method: getQueryString()
Property name: queryString
|
Returns the query string from the client's request (the string after the
path).
|
|
Method: getRemoteUser()
Property name: remoteUser
|
Returns the login name of the client. None if the client is not
authenticated.
|
|
Method: getRequestedSessionId()
Property name: requestedSessionId
|
Returns the clients session ID.
|
|
Method: getRequestURI()
Property name: requestURI
|
Returns that segment of the between the protocol name and the query
string.
|
|
Method: getServletPath()
Property name: servletPath
|
Returns the portion of the URL that designates the current
Servlet.
|
|
Method: getSession()
Property name: session
|
Returns the current session, or creates on if needed. A session is an
instance of javax.servlet.http.HttpSession.
|
|
Method: getSession(create)
|
Returns the current session if one exists. If not, a new session is
created if the create value is true.
|
|
Method: getUserPrincipal()
Property name: userPrincipal
|
Returns a java.security.Principal object with the current
authentication information userPrincipal
|
|
Method: isRequestedSessionIdFromCookie()
|
Returns 1 or 0 depending on whether the current
session ID was from a cookie.
|
|
Method: isRequestedSessionIdFromURL()
|
Returns 1 or 0 depending on whether the current
session ID was from the requested URL string.
|
|
Method: isRequestedSessionIdValid()
|
Returns 1 or 0 depending on whether the requested
session ID is still valid.
|
|
Method: isUserInRole(role)
|
Returns 1 or 0 indicating whether the user is
listed in the specified role.
|