All Packages Class Hierarchy This Package Previous Next Index
Class com.lgeds.jdf.servlet.HttpUtility
java.lang.Object
|
+----com.lgeds.jdf.servlet.HttpUtility
- public class HttpUtility
- extends Object
-
decode(String)
- Decode a string from
x-www-form-urlencoded format.
-
encode(String)
- Translates a string into
x-www-form-urlencoded format.
-
getBox(HttpServletRequest)
-
-
getBoxFromCookie(HttpServletRequest)
-
-
getNewSessionBox(HttpServletRequest)
-
-
getNewSessionBox(HttpServletRequest, String)
-
-
getSessionBox(HttpServletRequest)
-
-
getSessionBox(HttpServletRequest, String)
-
-
isOverIE50(HttpServletRequest)
-
decode
public static String decode(String s)
- Decode a string from
x-www-form-urlencoded format.
- Parameters:
- s - an encoded
String to be translated.
- Returns:
- the original
String.
- See Also:
- encode
encode
public static String encode(String s)
- Translates a string into
x-www-form-urlencoded format.
- Parameters:
- s -
String to be translated.
- Returns:
- the translated
String.
- See Also:
- encode
getBox
public static Box getBox(HttpServletRequest req)
- Parameters:
- req - javax.servlet.http.HttpServletRequest
- name - box name for this SessionBox
getBoxFromCookie
public static Box getBoxFromCookie(HttpServletRequest req)
- Parameters:
- req - javax.servlet.http.HttpServletRequest
- name - box name for this SessionBox
getNewSessionBox
public static SessionBox getNewSessionBox(HttpServletRequest req)
- Parameters:
- req - javax.servlet.http.HttpServletRequest
- name - box name for this SessionBox
getNewSessionBox
public static SessionBox getNewSessionBox(HttpServletRequest req,
String name)
- Parameters:
- req - javax.servlet.http.HttpServletRequest
- name - box name for this SessionBox
getSessionBox
public static SessionBox getSessionBox(HttpServletRequest req)
- Parameters:
- req - javax.servlet.http.HttpServletRequest
- name - box name for this SessionBox
getSessionBox
public static SessionBox getSessionBox(HttpServletRequest req,
String name)
- Parameters:
- req - javax.servlet.http.HttpServletRequest
- name - box name for this SessionBox
isOverIE50
public static boolean isOverIE50(HttpServletRequest req)
- Parameters:
- req - HttpServletRequest
- Returns:
- boolean
All Packages Class Hierarchy This Package Previous Next Index