|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.tapestry5.services.DelegatingRequest
public class DelegatingRequest
Class that wraps an Request, delegating all its methods.
| Constructor Summary | |
|---|---|
DelegatingRequest()
No-arg constructor. |
|
DelegatingRequest(Request request)
Constructor that receives a Request. |
|
| Method Summary | |
|---|---|
Object |
getAttribute(String name)
Returns the value of the named attribute as an Object, or null if no attribute of the
given name exists. |
String |
getContextPath()
Returns the context path. |
long |
getDateHeader(String name)
Returns the value of the specified request header as a long value that represents a
Date object. |
String |
getHeader(String name)
Returns the named header as a string, or null if not found. |
List<String> |
getHeaderNames()
Returns the names of all headers in the request. |
Locale |
getLocale()
Returns the locale of the client as determined from the request headers. |
int |
getLocalPort()
Returns the Internet Protocol (IP) port number of the interface on which the request was received. |
String |
getMethod()
Returns the name of the HTTP method with which this request was made, for example, GET, POST, or PUT. |
String |
getParameter(String name)
Returns the query parameter value for the given name. |
List<String> |
getParameterNames()
Returns a list of query parameter names, in alphabetical order. |
String[] |
getParameters(String name)
Returns the parameter values for the given name. |
String |
getPath()
Returns the path portion of the request, which starts with a "/" and contains everything up to the start of the query parameters. |
String |
getRemoteHost()
Returns the fully qualified name of the client or the last proxy that sent the request. |
String |
getServerName()
Returns the host name of the server to which the request was sent. |
int |
getServerPort()
Returns the port number to which the request was sent. |
Session |
getSession(boolean create)
Gets the Session. |
boolean |
isRequestedSessionIdValid()
Checks whether the requested session ID is still valid. |
boolean |
isSecure()
Returns a boolean indicating whether this request was made using a secure channel, such as HTTPS. |
boolean |
isXHR()
Returns true if the request originated on the client using XmlHttpRequest (the core of any Ajax behavior). |
void |
setAttribute(String name,
Object value)
Stores an attribute in this request. |
void |
setRequest(Request request)
Sets the delegate request. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public DelegatingRequest()
public DelegatingRequest(Request request)
request - a Request. It cannot be null.| Method Detail |
|---|
public void setRequest(Request request)
request - a Request. It cannot be null.public Object getAttribute(String name)
RequestObject, or null if no attribute of the
given name exists. Because this method is a wrapper around
ServletRequest.getAttribute(String),
it is case sensitive (unlike most of Tapestry).
getAttribute in interface Requestname - a String specifying the name of the attribute
Object containing the value of the attribute, or null if the attribute does
not existpublic String getContextPath()
Request
getContextPath in interface Requestpublic long getDateHeader(String name)
Requestlong 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 throws an IllegalArgumentException.
getDateHeader in interface Requestname - a String specifying the name of the header
long 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 String getHeader(String name)
Request
getHeader in interface Requestpublic List<String> getHeaderNames()
Request
getHeaderNames in interface Requestpublic Locale getLocale()
Request
getLocale in interface Requestpublic String getMethod()
Request
getMethod in interface Requestpublic String getParameter(String name)
Request
getParameter in interface Requestpublic List<String> getParameterNames()
Request
getParameterNames in interface Requestpublic String[] getParameters(String name)
Request
getParameters in interface Requestpublic String getPath()
Request
getPath in interface Requestpublic String getServerName()
RequestHost header, if any, or the resolved server name, or the server IP address.
getServerName in interface Requestpublic Session getSession(boolean create)
RequestSession. If create is false and the session has not be created previously, returns null. Also,
if the session is invalidated and create is false, returns null.
getSession in interface Requestcreate - true to force the creation of the session
public boolean isRequestedSessionIdValid()
Request
isRequestedSessionIdValid in interface Requestpublic boolean isSecure()
Request
isSecure in interface Requestpublic boolean isXHR()
Request
isXHR in interface Request
public void setAttribute(String name,
Object value)
Request
setAttribute in interface Requestname - a String specifying the name of the attributevalue - the Object to be stored, or null to remove the attributepublic int getLocalPort()
Request
getLocalPort in interface Requestpublic int getServerPort()
RequestHost header, if any, or the server port where the
client connection
was accepted on.
getServerPort in interface Requestpublic String getRemoteHost()
Request
getRemoteHost in interface RequestString containing the fully
qualified name of the client
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||