/**
* The default behavior of this method is to return getRealPath(String path)
* on the wrapped request object.
+ * @deprecated As of Version 3.0 of the Java Servlet API
*/
public String getRealPath(String path) {
/**
* The default behavior of this method is to return isRequestedSessionIdFromUrl()
* on the wrapped request object.
+ * @deprecated As of Version 3.0 of the Java Servlet API
*/
public boolean isRequestedSessionIdFromUrl() {
return this._getHttpServletRequest().isRequestedSessionIdFromUrl();
/**
* The default behavior of this method is to call encodeUrl(String url)
* on the wrapped response object.
+ * @deprecated As of Version 3.0 of the Java Servlet API
*/
public String encodeUrl(String url) {
return this._getHttpServletResponse().encodeUrl(url);
/**
* The default behavior of this method is to return encodeRedirectUrl(String url)
* on the wrapped response object.
+ * @deprecated As of Version 3.0 of the Java Servlet API
*/
public String encodeRedirectUrl(String url) {
return this._getHttpServletResponse().encodeRedirectUrl(url);
/**
* The default behavior of this method is to call setStatus(int sc, String sm)
* on the wrapped response object.
+ * @deprecated As of Version 3.0 of the Java Servlet API
*/
public void setStatus(int sc, String sm) {
this._getHttpServletResponse().setStatus(sc, sm);