|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.springframework.web.context.request.AbstractRequestAttributes
org.springframework.web.portlet.context.PortletRequestAttributes
org.springframework.web.portlet.context.PortletWebRequest
public class PortletWebRequest
WebRequest
adapter
for a PortletRequest
.
Field Summary |
---|
Fields inherited from class org.springframework.web.context.request.AbstractRequestAttributes |
---|
requestDestructionCallbacks |
Fields inherited from interface org.springframework.web.context.request.RequestAttributes |
---|
SCOPE_GLOBAL_SESSION, SCOPE_REQUEST, SCOPE_SESSION |
Constructor Summary | |
---|---|
PortletWebRequest(javax.portlet.PortletRequest request)
Create a new PortletWebRequest instance for the given request. |
|
PortletWebRequest(javax.portlet.PortletRequest request,
javax.portlet.PortletResponse response)
Create a new PortletWebRequest instance for the given request/response pair. |
Method Summary | |
---|---|
boolean |
checkNotModified(long lastModifiedTimestamp)
Last-modified handling not supported for portlet requests: As a consequence, this method always returns false . |
String |
getContextPath()
Return the context path for this request (usually the base path that the current web application is mapped to). |
String |
getDescription(boolean includeClientInfo)
Get a short description of this request, typically containing request URI and session id. |
Locale |
getLocale()
Return the primary Locale for this request. |
Object |
getNativeRequest()
Return the underlying native request object, if available. |
Object |
getNativeResponse()
Return the underlying native response object, if available. |
String |
getParameter(String paramName)
Return the request parameter of the given name, or null if none. |
Map |
getParameterMap()
Return a immutable Map of the request parameters, with parameter names as map keys and parameter values as map values. |
String[] |
getParameterValues(String paramName)
Return the request parameter values for the given parameter name, or null if none. |
String |
getRemoteUser()
Return the remote user for this request, if any. |
javax.portlet.PortletResponse |
getResponse()
Exposes the native PortletResponse that we're wrapping (if any). |
Principal |
getUserPrincipal()
Return the user principal for this request, if any. |
boolean |
isSecure()
Return whether this request has been sent over a secure transport mechanism (such as SSL). |
boolean |
isUserInRole(String role)
Determine whether the user is in the given role for this request. |
String |
toString()
|
Methods inherited from class org.springframework.web.portlet.context.PortletRequestAttributes |
---|
getAttribute, getAttributeNames, getRequest, getSession, getSessionId, getSessionMutex, registerDestructionCallback, removeAttribute, setAttribute, updateAccessedSessionAttributes |
Methods inherited from class org.springframework.web.context.request.AbstractRequestAttributes |
---|
isRequestActive, registerRequestDestructionCallback, removeRequestDestructionCallback, requestCompleted |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.springframework.web.context.request.RequestAttributes |
---|
getAttribute, getAttributeNames, getSessionId, getSessionMutex, registerDestructionCallback, removeAttribute, setAttribute |
Constructor Detail |
---|
public PortletWebRequest(javax.portlet.PortletRequest request)
request
- current portlet requestpublic PortletWebRequest(javax.portlet.PortletRequest request, javax.portlet.PortletResponse response)
request
- current portlet requestresponse
- current portlet responseMethod Detail |
---|
public final javax.portlet.PortletResponse getResponse()
PortletResponse
that we're wrapping (if any).
public Object getNativeRequest()
NativeWebRequest
getNativeRequest
in interface NativeWebRequest
HttpServletRequest
,
ActionRequest
,
RenderRequest
public Object getNativeResponse()
NativeWebRequest
getNativeResponse
in interface NativeWebRequest
HttpServletResponse
,
ActionResponse
,
RenderResponse
public String getParameter(String paramName)
WebRequest
null
if none.
Retrieves the first parameter value in case of a multi-value parameter.
getParameter
in interface WebRequest
ServletRequest.getParameter(String)
public String[] getParameterValues(String paramName)
WebRequest
null
if none.
A single-value parameter will be exposed as an array with a single element.
getParameterValues
in interface WebRequest
ServletRequest.getParameterValues(String)
public Map getParameterMap()
WebRequest
A single-value parameter will be exposed as an array with a single element.
getParameterMap
in interface WebRequest
ServletRequest.getParameterMap()
public Locale getLocale()
WebRequest
getLocale
in interface WebRequest
ServletRequest.getLocale()
public String getContextPath()
WebRequest
getContextPath
in interface WebRequest
HttpServletRequest.getContextPath()
public String getRemoteUser()
WebRequest
getRemoteUser
in interface WebRequest
HttpServletRequest.getRemoteUser()
public Principal getUserPrincipal()
WebRequest
getUserPrincipal
in interface WebRequest
HttpServletRequest.getUserPrincipal()
public boolean isUserInRole(String role)
WebRequest
isUserInRole
in interface WebRequest
HttpServletRequest.isUserInRole(String)
public boolean isSecure()
WebRequest
isSecure
in interface WebRequest
ServletRequest.isSecure()
public boolean checkNotModified(long lastModifiedTimestamp)
false
.
checkNotModified
in interface WebRequest
lastModifiedTimestamp
- the last-modified timestamp that
the application determined for the underlying resource
public String getDescription(boolean includeClientInfo)
WebRequest
getDescription
in interface WebRequest
includeClientInfo
- whether to include client-specific
information such as session id and user name
public String toString()
toString
in class PortletRequestAttributes
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |