spring-security-web

org.springframework.security.web.authentication
Class WebAuthenticationDetailsSource

java.lang.Object
  extended by org.springframework.security.web.authentication.WebAuthenticationDetailsSource
All Implemented Interfaces:
org.springframework.security.authentication.AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,WebAuthenticationDetails>

public class WebAuthenticationDetailsSource
extends Object
implements org.springframework.security.authentication.AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,WebAuthenticationDetails>

Implementation of AuthenticationDetailsSource which builds the details object from an HttpServletRequest object, creating a WebAuthenticationDetails.

Author:
Ben Alex

Constructor Summary
WebAuthenticationDetailsSource()
           
 
Method Summary
 WebAuthenticationDetails buildDetails(javax.servlet.http.HttpServletRequest context)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WebAuthenticationDetailsSource

public WebAuthenticationDetailsSource()
Method Detail

buildDetails

public WebAuthenticationDetails buildDetails(javax.servlet.http.HttpServletRequest context)
Specified by:
buildDetails in interface org.springframework.security.authentication.AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,WebAuthenticationDetails>
Parameters:
context - the HttpServletRequest object.
Returns:
the WebAuthenticationDetails containing information about the current request

spring-security-web