|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object
|
+--rup.robot.httpserver.request.MyRequest
|
+--rup.robot.httpserver.request.MyServletRequest
|
+--rup.robot.httpserver.request.MyHttpServletRequest
Permet de récuperer des informations spécifiques au protocole http sur la requête reçue.
| Inner classes inherited from class rup.robot.httpserver.request.MyRequest |
MyRequest.JServInputStream |
| Fields inherited from class rup.robot.httpserver.request.MyRequest |
env_vars,
headers_in,
in,
params |
| Constructor Summary | |
MyHttpServletRequest(java.io.InputStream in)
|
|
| Method Summary | |
java.lang.String |
getAuthType()
Returns the name of the authentication scheme the server uses, for example, "BASIC" or "SSL," or null
if the server does not have an authentication scheme.
|
javax.servlet.http.Cookie[] |
getCookies()
PAS IMPLEMENTE PAS IMPLEMENTE Returns an array containing all of the Cookie
objects the browser sent with this request.
|
long |
getDateHeader(java.lang.String name)
Returns the value of the specified request header as a long value that represents a
Date object. |
java.lang.String |
getHeader(java.lang.String name)
Returns the value of the specified request header as a String. |
java.util.Enumeration |
getHeaderNames()
Returns an enumeration of all the header names this request contains. |
int |
getIntHeader(java.lang.String name)
Returns the value of the specified request header as an integer. |
java.lang.String |
getMethod()
Returns the name of the HTTP method with which this request was made, for example, GET, POST, or PUT. |
java.lang.String |
getPathInfo()
Returns any extra path information associated with the URL the client sent when it made this request. |
java.lang.String |
getPathTranslated()
Returns any extra path information after the servlet name but before the query string, and translates it to a real path. |
java.lang.String |
getQueryString()
Returns the query string that is contained in the request URL after the path. |
java.lang.String |
getRemoteUser()
Returns the name of the user making this request, if the user has logged in using HTTP authentication. |
java.lang.String |
getRequestedSessionId()
PAS IMPLEMENTE PAS IMPLEMENTE Returns the session ID specified by the client. |
java.lang.String |
getRequestURI()
Returns the part of this request's URL from the protocol name up to the query string in the first line of the HTTP request. |
java.lang.String |
getServletPath()
Returns the part of this request's URL that calls the servlet. |
javax.servlet.http.HttpSession |
getSession()
PAS IMPLEMENTE .... |
javax.servlet.http.HttpSession |
getSession(boolean create)
PAS IMPLEMENTE .... |
boolean |
isRequestedSessionIdFromCookie()
PAS IMPLEMENTE .... |
boolean |
isRequestedSessionIdFromUrl()
Deprecated. As of Version 2.1 of the Java Servlet API, use isRequestedSessionIdFromURL()
instead. |
boolean |
isRequestedSessionIdFromURL()
PAS IMPLEMENTE .... |
boolean |
isRequestedSessionIdValid()
PAS IMPLEMENTE .... |
| Methods inherited from class rup.robot.httpserver.request.MyServletRequest |
getAttribute,
getAttributeNames,
getCharacterEncoding,
getContentLength,
getContentType,
getInputStream,
getParameter,
getParameterNames,
getParameterValues,
getProtocol,
getReader,
getRealPath,
getRemoteAddr,
getRemoteHost,
getScheme,
getServerName,
getServerPort,
parseCharacterEncoding,
setAttribute |
| Methods inherited from class rup.robot.httpserver.request.MyRequest |
getEnv,
getTokens,
readHeader |
| Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
| Constructor Detail |
public MyHttpServletRequest(java.io.InputStream in)
throws java.io.IOException
| Method Detail |
public java.lang.String getAuthType()
null
if the server does not have an authentication scheme.
The authentication scheme provides a challenge-response model in which the server challenges the client, and the client provides authentication information. Same as the value of the CGI variable AUTH_TYPE.
String specifying the name of
the authentication scheme, or
null if the server
does not have an authentication
schemepublic javax.servlet.http.Cookie[] getCookies()
Cookie
objects the browser sent with this request.
This method returns null if the browser did
not send any cookies.Cookies
included with this request, or null
if the request has no cookiespublic long getDateHeader(java.lang.String name)
long value that represents a
Date object. Use this method with
headers that contain dates, such as
If-Modified-Since.
The date is returned as the number of milliseconds since January 1, 1970 GMT. The header name is case insensitive.
If the request did not have a header of the
specified name, this method returns -1. If the header
can't be converted to a date, the method returns
an IllegalArgumentException.
name - a String specifying the
name of the headerlong value
representing the date specified
in the header expressed as
the number of milliseconds
since January 1, 1970 GMT,
or -1 if the named header
was not included with the
reqestpublic java.lang.String getHeader(java.lang.String name)
String. If the named header wasn't
sent with
the request, this method returns null.
The header name is case insensitive. You can use
this method with any request header.name - a String specifying the
header nameString containing the
value of the requested
header, or null
if the request does not
have a header of that namepublic java.util.Enumeration getHeaderNames()
Some servlet engines do not allow do not allow
servlets to access headers using this method, in
which case this method returns null
null
public int getIntHeader(java.lang.String name)
throws java.lang.NumberFormatException
NumberFormatException.
The header name is case insensitive.
name - a String specifying the name
of a request headerpublic java.lang.String getMethod()
String is the same as
the value of the CGI variable REQUEST_METHOD.String
specifying the name
of the method with which
this request was madepublic java.lang.String getPathInfo()
null if there
was no extra path information.
The information this method returns is the same as the value of the CGI variable PATH_INFO.
String specifying
extra path information that comes
after the servlet path but before
the query string in the request URL;
or null if the URL does not have
any extra path informationpublic java.lang.String getPathTranslated()
If the URL does not have any extra path information,
this method returns null.
String specifying the
real path, or null if
the URL does not have any extra path
informationpublic java.lang.String getQueryString()
null
if the URL does not have a query string. Same as the value
of the CGI variable QUERY_STRING.String containing the query
string or null if the URL
contains no query stringpublic java.lang.String getRemoteUser()
null if the user login is not authenticated.
Whether the user name is sent with each subsequent request
depends on the browser. Same as the value of the CGI variable
REMOTE_USER.String specifying the name
of the user making this request, or null
public java.lang.String getRequestedSessionId()
null.
PAS IMPLEMENTE .... PAS IMPLEMENTEString specifying the session
ID, or null if the request did
not specify a session IDisRequestedSessionIdValid()public java.lang.String getRequestURI()
First line of HTTP request Returned Value POST /some/path.html HTTP/1.1 /some/path.html GET http://foo.bar/a.html HTTP/1.0 http://foo.bar/a.html HEAD /xyz?a=b HTTP/1.1 /xyz
To reconstruct an URL with a scheme and host, use
HttpUtils#getRequestURL, which
returns a StringBuffer.
String containing
the part of the URL from the
protocol name up to the query stringHttpUtils#getRequestURLpublic java.lang.String getServletPath()
String containing
the name or path of the servlet being
called, as it is specified in
the request URLpublic javax.servlet.http.HttpSession getSession(boolean create)
HttpSession
associated with this request or, if necessary, creates
a new session for the request. Use true
for create to create a new session,
or false to return the current
HttpSession.
If create is false
and the request has no valid HttpSession,
this method returns null.
To make sure the session is properly maintained,
you must call this method at least once before
you write any output to the response. Newly created
sessions (that is, sessions for which
HttpSession.isNew returns true)
do not have any application-specific state.
true - to create
a new session for this request;
false to return the current
sessionHttpSession associated
with this request or null if
create is false
and the request has no valid sessionpublic javax.servlet.http.HttpSession getSession()
HttpSession associated
with this requestpublic boolean isRequestedSessionIdValid()
HttpSessionContext).
If the session is not valid,
the getSession(boolean) method never returns it.true if this
request has a valid session
in the current session context;
otherwise, falsegetRequestedSessionId(),
getSession(boolean),
HttpSessionContextpublic boolean isRequestedSessionIdFromCookie()
getSession(boolean)
method.true if the session ID
came in as a
cookie; otherwise, falsegetSession(boolean)public boolean isRequestedSessionIdFromURL()
getSession(boolean) method.true if the session ID
came in as part of an URL; otherwise,
falsegetSession(boolean)public boolean isRequestedSessionIdFromUrl()
isRequestedSessionIdFromURL()
instead.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||