public class RequestUtil extends Object
This class is not intended to be extended or instantiated because it just provides static utility methods not intended to be overwritten.
Constructor and Description |
---|
RequestUtil() |
Modifier and Type | Method and Description |
---|---|
static String |
getServletName(javax.servlet.Servlet servlet)
Utility method to return a name for the given servlet.
|
static boolean |
handleIfModifiedSince(SlingHttpServletRequest req,
javax.servlet.http.HttpServletResponse resp)
Checks if the request contains a if-last-modified-since header and if the the
request's underlying resource has a jcr:lastModified property.
|
static Map<String,Double> |
parserAcceptHeader(String value)
Parses an
Accept-* header of the form: |
static Map<String,Map<String,String>> |
parserHeader(String value)
Parses a header of the form:
|
static Object |
setRequestAttribute(javax.servlet.http.HttpServletRequest request,
String name,
Object value)
Sets the named request attribute to the new value and returns the
previous value.
|
@Nonnull public static Map<String,Map<String,String>> parserHeader(@Nonnull String value)
Header = Token { "," Token } . Token = name { ";" Parameter } . Paramter = name [ "=" value ] ."," and ";" are not allowed within name and value
value
- @Nonnull public static Map<String,Double> parserAcceptHeader(@Nonnull String value)
Accept-*
header of the form:
Header = Token { "," Token } . Token = name { ";" "q" [ "=" value ] } . Paramter = ."," and ";" are not allowed within name and value
value
- Double
instances providing the value of the
q
parameter.@Nonnull public static String getServletName(@Nonnull javax.servlet.Servlet servlet)
null
,
non-empty name:
@CheckForNull public static Object setRequestAttribute(@Nonnull javax.servlet.http.HttpServletRequest request, @Nonnull String name, Object value)
request
- The request object whose attribute is to be set.name
- The name of the attribute to be set.value
- The new value of the attribute. If this is null
the attribte is actually removed from the request.null
if it was not set.public static boolean handleIfModifiedSince(@Nonnull SlingHttpServletRequest req, @Nonnull javax.servlet.http.HttpServletResponse resp)
req
- the requestresp
- the responsetrue
if the response was setCopyright © 2015 The Apache Software Foundation. All rights reserved.