Methods Summary |
---|
public java.lang.String | getAuthType()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).getAuthType();
|
public java.lang.String | getContextPath()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).getContextPath();
|
public javax.servlet.http.Cookie[] | getCookies()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).getCookies();
|
public long | getDateHeader(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 ((HttpServletRequest) request).getDateHeader(name);
|
public java.lang.String | getHeader(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 ((HttpServletRequest) request).getHeader(name);
|
public java.util.Enumeration | getHeaderNames()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).getHeaderNames();
|
public java.util.Enumeration | getHeaders(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 ((HttpServletRequest) request).getHeaders(name);
|
public int | getIntHeader(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 ((HttpServletRequest) request).getIntHeader(name);
|
public java.lang.String | getMethod()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).getMethod();
|
public java.lang.String | getPathInfo()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).getPathInfo();
|
public java.lang.String | getPathTranslated()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).getPathTranslated();
|
public java.lang.String | getQueryString()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).getQueryString();
|
public java.lang.String | getRemoteUser()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).getRemoteUser();
|
public java.lang.String | getRequestURI()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).getRequestURI();
|
public java.lang.StringBuffer | getRequestURL()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).getRequestURL();
|
public java.lang.String | getRequestedSessionId()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).getRequestedSessionId();
|
public java.lang.String | getServletPath()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).getServletPath();
|
public javax.servlet.http.HttpSession | getSession(boolean create)
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
HttpSession session =
((HttpServletRequest) request).getSession(create);
if (session == null)
return null;
else
return new StandardSessionFacade(session);
|
public javax.servlet.http.HttpSession | getSession()
return getSession(true);
|
public java.security.Principal | getUserPrincipal()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).getUserPrincipal();
|
public boolean | isRequestedSessionIdFromCookie()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).isRequestedSessionIdFromCookie();
|
public boolean | isRequestedSessionIdFromURL()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).isRequestedSessionIdFromURL();
|
public boolean | isRequestedSessionIdFromUrl()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).isRequestedSessionIdFromURL();
|
public boolean | isRequestedSessionIdValid()
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).isRequestedSessionIdValid();
|
public boolean | isUserInRole(java.lang.String role)
// Disallow operation if the object has gone out of scope
if (request == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
return ((HttpServletRequest) request).isUserInRole(role);
|