org.eclipse.jetty.security.authentication
类 FormAuthenticator.FormRequest

java.lang.Object
  继承者 javax.servlet.ServletRequestWrapper
      继承者 javax.servlet.http.HttpServletRequestWrapper
          继承者 org.eclipse.jetty.security.authentication.FormAuthenticator.FormRequest
所有已实现的接口:
HttpServletRequest, ServletRequest
包容类:
FormAuthenticator

protected static class FormAuthenticator.FormRequest
extends HttpServletRequestWrapper


字段摘要
 
从接口 javax.servlet.http.HttpServletRequest 继承的字段
BASIC_AUTH, CLIENT_CERT_AUTH, DIGEST_AUTH, FORM_AUTH
 
构造方法摘要
FormAuthenticator.FormRequest(HttpServletRequest request)
           
 
方法摘要
 long getDateHeader(String name)
          The default behavior of this method is to return getDateHeader(String name) on the wrapped request object.
 String getHeader(String name)
          The default behavior of this method is to return getHeader(String name) on the wrapped request object.
 Enumeration getHeaderNames()
          The default behavior of this method is to return getHeaderNames() on the wrapped request object.
 Enumeration getHeaders(String name)
          The default behavior of this method is to return getHeaders(String name) on the wrapped request object.
 
从类 javax.servlet.http.HttpServletRequestWrapper 继承的方法
authenticate, getAuthType, getContextPath, getCookies, getIntHeader, getMethod, getPart, getParts, getPathInfo, getPathTranslated, getQueryString, getRemoteUser, getRequestedSessionId, getRequestURI, getRequestURL, getServletPath, getSession, getSession, getUserPrincipal, isRequestedSessionIdFromCookie, isRequestedSessionIdFromUrl, isRequestedSessionIdFromURL, isRequestedSessionIdValid, isUserInRole, login, logout
 
从类 javax.servlet.ServletRequestWrapper 继承的方法
getAsyncContext, getAttribute, getAttributeNames, getCharacterEncoding, getContentLength, getContentType, getDispatcherType, getInputStream, getLocalAddr, getLocale, getLocales, getLocalName, getLocalPort, getParameter, getParameterMap, getParameterNames, getParameterValues, getProtocol, getReader, getRealPath, getRemoteAddr, getRemoteHost, getRemotePort, getRequest, getRequestDispatcher, getScheme, getServerName, getServerPort, getServletContext, isAsyncStarted, isAsyncSupported, isSecure, isWrapperFor, isWrapperFor, removeAttribute, setAttribute, setCharacterEncoding, setRequest, startAsync, startAsync
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
从接口 javax.servlet.ServletRequest 继承的方法
getAsyncContext, getAttribute, getAttributeNames, getCharacterEncoding, getContentLength, getContentType, getDispatcherType, getInputStream, getLocalAddr, getLocale, getLocales, getLocalName, getLocalPort, getParameter, getParameterMap, getParameterNames, getParameterValues, getProtocol, getReader, getRealPath, getRemoteAddr, getRemoteHost, getRemotePort, getRequestDispatcher, getScheme, getServerName, getServerPort, getServletContext, isAsyncStarted, isAsyncSupported, isSecure, removeAttribute, setAttribute, setCharacterEncoding, startAsync, startAsync
 

构造方法详细信息

FormAuthenticator.FormRequest

public FormAuthenticator.FormRequest(HttpServletRequest request)
方法详细信息

getDateHeader

public long getDateHeader(String name)
从类 HttpServletRequestWrapper 复制的描述
The default behavior of this method is to return getDateHeader(String name) on the wrapped request object.

指定者:
接口 HttpServletRequest 中的 getDateHeader
覆盖:
HttpServletRequestWrapper 中的 getDateHeader
参数:
name - a String specifying the name of the header
返回:
a long value representing the date specified in the header expressed as the number of milliseconds since January 1, 1970 GMT, or -1 if the named header was not included with the request

getHeader

public String getHeader(String name)
从类 HttpServletRequestWrapper 复制的描述
The default behavior of this method is to return getHeader(String name) on the wrapped request object.

指定者:
接口 HttpServletRequest 中的 getHeader
覆盖:
HttpServletRequestWrapper 中的 getHeader
参数:
name - a String specifying the header name
返回:
a String containing the value of the requested header, or null if the request does not have a header of that name

getHeaderNames

public Enumeration getHeaderNames()
从类 HttpServletRequestWrapper 复制的描述
The default behavior of this method is to return getHeaderNames() on the wrapped request object.

指定者:
接口 HttpServletRequest 中的 getHeaderNames
覆盖:
HttpServletRequestWrapper 中的 getHeaderNames
返回:
an enumeration of all the header names sent with this request; if the request has no headers, an empty enumeration; if the servlet container does not allow servlets to use this method, null

getHeaders

public Enumeration getHeaders(String name)
从类 HttpServletRequestWrapper 复制的描述
The default behavior of this method is to return getHeaders(String name) on the wrapped request object.

指定者:
接口 HttpServletRequest 中的 getHeaders
覆盖:
HttpServletRequestWrapper 中的 getHeaders
参数:
name - a String specifying the header name
返回:
an Enumeration containing the values of the requested header. If the request does not have any headers of that name return an empty enumeration. If the container does not allow access to header information, return null


Copyright © 2013. All Rights Reserved.