RequestUtil
@Deprecated public class RequestUtil extends Object
Constructor and Description |
---|
RequestUtil()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static String |
getServletName(javax.servlet.Servlet servlet)
Deprecated.
Utility method to return a name for the given servlet.
|
static Map<String,Double> |
parserAcceptHeader(String value)
Deprecated.
Parses an
Accept-* header of the form: |
static Map<String,Map<String,String>> |
parserHeader(String value)
Deprecated.
Parses a header of the form:
|
static Object |
setRequestAttribute(javax.servlet.http.HttpServletRequest request,
String name,
Object value)
Deprecated.
Sets the named request attribute to the new value and returns the
previous value.
|
public static Map<String,Map<String,String>> parserHeader(String value)
Header = Token { "," Token } . Token = name { ";" Parameter } . Paramter = name [ "=" value ] ."," and ";" are not allowed within name and value
value
- public static Map<String,Double> parserAcceptHeader(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.public static String getServletName(javax.servlet.Servlet servlet)
null
,
non-empty name:
public static Object setRequestAttribute(javax.servlet.http.HttpServletRequest request, 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 attribute is actually removed from the request.null
if it was not set.Copyright © 2015 The Apache Software Foundation. All rights reserved.