Removed
Methods
|
PropertyResourceBundle
getPropertyResourceBundle
(ServletContext,
HttpServletRequest) |
This returns the PropertyResourceBundle for JSP in runtime
default locale This will pick up properties files located relative to the
location of the JSP Usage java.util.ResourceBundle thisResources =
com.ibm.commerce.server.JSPHelper.getPropertyResourceBundle(getServletContext()
request);
|
PropertyResourceBundle
getPropertyResourceBundle
(String,
ServletContext, HttpServletRequest)
|
This returns the PropertyResourceBundle for JSP of the
properties files sfilename in runtime default locale This will pick up
properties files located relative to the location of the JSP Usage
java.util.ResourceBundle thisResources =
com.ibm.commerce.server.JSPHelper.getPropertyResourceBundle("MyProperties"
getServletContext() request);
|
PropertyResourceBundle
getPropertyResourceBundle
(String,
ServletContext, HttpServletRequest,
Locale)
|
This returns the PropertyResourceBundle for JSP of the
properties files sfilename in locale locale. |
ResourceBundle
getResourceBundle
(HttpServletRequest )
|
This returns the ResourceBundle for JSP in runtime default
locale |
ResourceBundle
getResourceBundle
(String,
HttpServletRequest) |
This returns the ResourceBundle for JSP of the properties
files sfilename in runtime default locale |
ResourceBundle
getResourceBundle
(String,
HttpServletRequest, Locale)
|
This returns the ResourceBundle for JSP of the properties
files sfilename in locale locale. |
void
rollbackTransaction
(HttpServletRequest,
boolean) |
This method rolls back the current transaction and also mark
the current page to be not cachable. |
Changed
Methods
|
void
setCachePage
(boolean )
|
Now deprecated.
|
Please use setUncacheable |
String
getParameter
(HttpServletRequest,
String) |
Change in signature from
(HttpServletRequest, java.lang.String ) to
(javax.servlet.http.HttpServletRequest,
java.lang.String ).
|
Returns a parameter as String from the request
object. |
String[]
getParameterValues
(HttpServletRequest,
String) |
Change in signature from
(HttpServletRequest, java.lang.String ) to
(javax.servlet.http.HttpServletRequest,
java.lang.String ).
|
Returns a parameter as a String array from the request
object. |