Methods Summary |
---|
public void | clear()Clear facade.
// --------------------------------------------------------- Public Methods
request = null;
|
public java.lang.Object | getAttribute(java.lang.String name)
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getAttribute(name);
|
public java.util.Enumeration | getAttributeNames()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getAttributeNames();
|
public java.lang.String | getCharacterEncoding()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getCharacterEncoding();
|
public int | getContentLength()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getContentLength();
|
public java.lang.String | getContentType()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getContentType();
|
public javax.servlet.ServletInputStream | getInputStream()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getInputStream();
|
public java.lang.String | getLocalAddr()Returns the Internet Protocol (IP) address of the interface on
which the request was received.
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getLocalAddr();
|
public java.lang.String | getLocalName()Returns the host name of the Internet Protocol (IP) interface on
which the request was received.
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getLocalName();
|
public int | getLocalPort()Returns the Internet Protocol (IP) port number of the interface
on which the request was received.
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getLocalPort();
|
public java.util.Locale | getLocale()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getLocale();
|
public java.util.Enumeration | getLocales()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getLocales();
|
public java.lang.String | getParameter(java.lang.String name)
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getParameter(name);
|
public java.util.Map | getParameterMap()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getParameterMap();
|
public java.util.Enumeration | getParameterNames()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getParameterNames();
|
public java.lang.String[] | getParameterValues(java.lang.String name)
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getParameterValues(name);
|
public java.lang.String | getProtocol()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getProtocol();
|
public java.io.BufferedReader | getReader()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getReader();
|
public java.lang.String | getRealPath(java.lang.String path)
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getRealPath(path);
|
public java.lang.String | getRemoteAddr()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getRemoteAddr();
|
public java.lang.String | getRemoteHost()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getRemoteHost();
|
public int | getRemotePort()Returns the Internet Protocol (IP) source port of the client
or last proxy that sent the request.
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getRemotePort();
|
public javax.servlet.RequestDispatcher | getRequestDispatcher(java.lang.String path)
// TODO : Facade !!
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getRequestDispatcher(path);
|
public java.lang.String | getScheme()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getScheme();
|
public java.lang.String | getServerName()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getServerName();
|
public int | getServerPort()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.getServerPort();
|
public boolean | isSecure()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return request.isSecure();
|
public void | removeAttribute(java.lang.String name)
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
request.removeAttribute(name);
|
public void | setAttribute(java.lang.String name, java.lang.Object o)
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
request.setAttribute(name, o);
|
public void | setCharacterEncoding(java.lang.String env)
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
request.setCharacterEncoding(env);
|