Available Methods
- getParameter ( )
- setAttribute ( )
- getHeader ( )
- getAttribute ( )
- getSession ( )
- getCookies ( )
- getRequestURI ( )
- getQueryString ( )
- getParameterValues ( )
- getRemoteAddr ( )
- getParameterMap ( )
- getContextPath ( )
- getPathInfo ( )
- getRequestDispatcher ( )
- getHeaders ( )
- getParameterNames ( )
- getServletPath ( )
- getHeaderNames ( )
- getMethod ( )
- setCharacterEncoding ( )
- getInputStream ( )
- getServerName ( )
- getRequestURL ( )
- getServerPort ( )
- startAsync ( )
- getRemoteUser ( )
- getScheme ( )
- isUserInRole ( )
- getContentType ( )
- getUserPrincipal ( )
- removeAttribute ( )
- getCharacterEncoding ( )
- getServletContext ( )
- getReader ( )
- isSecure ( )
- getLocale ( )
- getRemoteHost ( )
- getContentLength ( )
- logout ( )
- getLocalPort ( )
- getParts ( )
- getDateHeader ( )
- getAttributeNames ( )
- getDispatcherType ( )
- getRemotePort ( )
- getLocalAddr ( )
- getRequestedSessionId ( )
- getPart ( )
- login ( )
- isAsyncStarted ( )
- getLocales ( )
- isAsyncSupported ( )
- changeSessionId ( )
- getLocalName ( )
- getAsyncContext ( )
- getContentLengthLong ( )
- getProtocol ( )
- upgrade ( )
- isRequestedSessionIdValid ( )
- getAuthType ( )
- FORM_AUTH
- newPushBuilder ( )
- BASIC_AUTH
Related Classes
- java.util.Arrays
- java.io.File
- java.util.Collections
- java.io.InputStream
- java.util.Date
- java.util.Iterator
- java.util.Locale
- java.io.OutputStream
- java.io.PrintWriter
- java.util.Enumeration
- javax.servlet.http.HttpServletResponse
- org.json.JSONObject
- org.apache.commons.lang3.StringUtils
- org.springframework.web.bind.annotation.RequestMapping
- javax.servlet.ServletException
- org.apache.commons.lang.StringUtils
- org.springframework.web.bind.annotation.RequestMethod
- org.springframework.http.HttpStatus
- org.springframework.web.bind.annotation.RequestParam
- org.springframework.http.ResponseEntity
- org.springframework.web.bind.annotation.PathVariable
- org.springframework.web.bind.annotation.ResponseBody
- org.springframework.web.bind.annotation.GetMapping
- javax.servlet.ServletRequest
- javax.servlet.FilterChain
Java Code Examples for javax.servlet.http.HttpServletRequest#FORM_AUTH
The following examples show how to use
javax.servlet.http.HttpServletRequest#FORM_AUTH .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SecurityHttpRequestWrapper.java From packagedrone with Eclipse Public License 1.0 | 5 votes |
@Override public String getAuthType () { final Principal user = getUserPrincipal (); if ( user != null ) { return HttpServletRequest.FORM_AUTH; } else { return null; } }
Example 2
Source File: FormAuthenticator.java From Tomcat8-Source-Read with MIT License | 4 votes |
@Override protected String getAuthMethod() { return HttpServletRequest.FORM_AUTH; }
Example 3
Source File: FormAuthenticator.java From Tomcat7.0.67 with Apache License 2.0 | 4 votes |
@Override protected String getAuthMethod() { return HttpServletRequest.FORM_AUTH; }
Example 4
Source File: FormAuthenticator.java From tomcatsrc with Apache License 2.0 | 4 votes |
@Override protected String getAuthMethod() { return HttpServletRequest.FORM_AUTH; }
Example 5
Source File: AppengineAuthenticator.java From yawp with MIT License | 4 votes |
@Override public String getAuthMethod() { return HttpServletRequest.FORM_AUTH; }