Package lazyj
Class RequestWrapper
java.lang.Object
lazyj.RequestWrapper
This utility class is adapted for JSP use, offering easy access to the parameters and file uploading.
- Since:
- Oct 16, 2007 (1.0.2)
- Author:
- costing
-
Constructor Summary
ConstructorsConstructorDescriptionRequestWrapper
(javax.servlet.http.HttpServletRequest request) Initialize the class with aHttpServletRequest
-
Method Summary
Modifier and TypeMethodDescriptionGet the SQL-safe value of this parameterboolean
Get the boolean valueGet the value of a specific cookiedouble
Get the value of a parameter as a double value.double
Get the value of a parameter as a double value.float
Get the value of a parameter as a float value.float
Get the value of a parameter as a float value.static String
getHTTPDate
(Date d) get the http-style formatted dateint
Get the value of a parameter as an integer value.int
Get the value of a parameter as an integer value.long
Get the value of a parameter as a long value.long
Get the value of a parameter as a long value.Get the value of a parameter as a string.Get the value of a parameter as a stringString[]
Get all the values of a parameter.com.oreilly.servlet.MultipartRequest
initMultipartRequest
(String sTempDir, int iFileSizeLimit) This method should be called when the servlet expects a file upload from the client.static void
setCacheTimeout
(javax.servlet.http.HttpServletResponse response, int seconds) Set the caching timeout for some generated content.static void
setNotCache
(javax.servlet.http.HttpServletResponse response) Make this response uncacheable by the browser / proxies on the way
-
Constructor Details
-
RequestWrapper
public RequestWrapper(javax.servlet.http.HttpServletRequest request) Initialize the class with aHttpServletRequest
- Parameters:
request
-
-
-
Method Details
-
initMultipartRequest
public com.oreilly.servlet.MultipartRequest initMultipartRequest(String sTempDir, int iFileSizeLimit) This method should be called when the servlet expects a file upload from the client. It will initialize the internal mlRequest object. If the file is too big or there is another problem uploading the file then the method will return false, if everything is ok then it will return true.- Parameters:
sTempDir
- temporary folder for the files that are uploadediFileSizeLimit
- maximum size of a file- Returns:
- true if the request is indeed a file upload, the file size is <= iFileSizeLimit and the weather outside is fine
-
getValues
Get all the values of a parameter.- Parameters:
sParam
-- Returns:
- values array, possibly empty but never null
-
gets
Get the value of a parameter as a string.- Parameters:
sParam
- the parameter name- Returns:
- the string value of this parameter, never null ("" is returned in the worst case)
-
gets
Get the value of a parameter as a string- Parameters:
sParam
- parameter namesDefault
- default value to return in case the parameter is not defined or has no value ("")- Returns:
- value
-
geti
Get the value of a parameter as an integer value. If there is a parsing error then return the given default value.- Parameters:
sParam
- the name of the parameterdefaultVal
- default value to return in case of an error- Returns:
- parsed value of the parameter, or the defaultValue if parameter is missing or is not an integer value representation
-
geti
Get the value of a parameter as an integer value. If there is a parsing error then the value 0 will be returned.- Parameters:
sParam
- name of the parameter- Returns:
- parsed value of the request parameter, or 0 if there is any error in parsing, parameter not existing etc
-
getl
Get the value of a parameter as a long value. If there is a parsing error then return the given default value.- Parameters:
sParam
- the name of the parameterdefaultVal
- default value to return in case of an error- Returns:
- parsed value of the parameter, or the defaultValue if parameter is missing or is not a long value representation
-
getl
Get the value of a parameter as a long value. If there is a parsing error then the value 0 will be returned.- Parameters:
sParam
- name of the parameter- Returns:
- parsed value of the request parameter, or 0 if there is any error in parsing, parameter not existing etc
-
getf
Get the value of a parameter as a float value. If there is a parsing error then return the given default value.- Parameters:
sParam
- the name of the parameterdefaultVal
- default value to return in case of an error- Returns:
- parsed value of the parameter, or the defaultValue if parameter is missing or is not a float value representation
-
getf
Get the value of a parameter as a float value. If there is a parsing error then the value 0 will be returned.- Parameters:
sParam
- name of the parameter- Returns:
- parsed value of the request parameter, or 0 if there is any error in parsing, parameter not existing etc
-
getd
Get the value of a parameter as a double value. If there is a parsing error then return the given default value.- Parameters:
sParam
- the name of the parameterdefaultVal
- default value to return in case of an error- Returns:
- parsed value of the parameter, or the defaultValue if parameter is missing or is not a double value representation
-
getd
Get the value of a parameter as a double value. If there is a parsing error then the value 0 will be returned.- Parameters:
sParam
- name of the parameter- Returns:
- parsed value of the request parameter, or 0 if there is any error in parsing, parameter not existing etc
-
getCookie
Get the value of a specific cookie- Parameters:
sName
- the name of the cookie- Returns:
- the value of the cookie, or "" if there was an error (cookie not existing ...)
-
getb
Get the boolean value- Parameters:
sName
- parameter namebDefault
- default value- Returns:
- true/false, obviously :)
-
esc
Get the SQL-safe value of this parameter- Parameters:
sName
- URL parameter name- Returns:
- SQL-safe value of the given URL parameter
-
setNotCache
public static void setNotCache(javax.servlet.http.HttpServletResponse response) Make this response uncacheable by the browser / proxies on the way- Parameters:
response
-
-
setCacheTimeout
public static void setCacheTimeout(javax.servlet.http.HttpServletResponse response, int seconds) Set the caching timeout for some generated content.- Parameters:
response
- the response objectseconds
- expiration time, in seconds relative to "now". A strict positive value would enable the caching while a zero or negative one would disable the caching.
-
getHTTPDate
get the http-style formatted date- Parameters:
d
-- Returns:
- http-style formatted date
-