|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.acegisecurity.ui.AbstractProcessingFilter
public abstract class AbstractProcessingFilter
Abstract processor of browser-based HTTP-based authentication requests.
This filter is responsible for
processing authentication requests. If authentication is successful, the resulting Authentication
object
will be placed into the SecurityContext
, which is guaranteed to have already been created by an
earlier filter.
If authentication fails, the AuthenticationException
will be placed into the
HttpSession
with the attribute defined by ACEGI_SECURITY_LAST_EXCEPTION_KEY
.
To use this filter, it is necessary to specify the following properties:
defaultTargetUrl
indicates the URL that should be used for redirection if the
HttpSession
attribute named ACEGI_SAVED_REQUEST_KEY
does not indicate the target URL once
authentication is completed successfully. eg: /
. The defaultTargetUrl
will be treated
as relative to the web-app's context path, and should include the leading /
. Alternatively,
inclusion of a scheme name (eg http:// or https://) as the prefix will denote a fully-qualified URL and this is
also supported.authenticationFailureUrl
indicates the URL that should be used for redirection if the
authentication request fails. eg: /login.jsp?login_error=1
.filterProcessesUrl
indicates the URL that this filter will respond to. This parameter
varies by subclass.alwaysUseDefaultTargetUrl
causes successful authentication to always redirect to the
defaultTargetUrl
, even if the HttpSession
attribute named ACEGI_SAVED_REQUEST_KEY
defines the intended target URL.To configure this filter to redirect to specific pages as the result of specific AuthenticationException
s you can do the following. Configure the exceptionMappings
property in your
application xml. This property is a java.util.Properties object that maps a fully-qualified exception class name to
a redirection url target.
For example:
<property name="exceptionMappings"> <props> <prop> key="org.acegisecurity.BadCredentialsException">/bad_credentials.jsp</prop> </props> </property>The example above would redirect all
BadCredentialsException
s thrown, to a page in the
web-application called /bad_credentials.jsp.
Any AuthenticationException
thrown that cannot be matched in the exceptionMappings
will
be redirected to the authenticationFailureUrl
If authentication is successful, an InteractiveAuthenticationSuccessEvent
will be published to the application
context. No events will be published if authentication was unsuccessful, because this would generally be recorded
via an AuthenticationManager
-specific application event.
Field Summary | |
---|---|
static String |
ACEGI_SAVED_REQUEST_KEY
|
static String |
ACEGI_SECURITY_LAST_EXCEPTION_KEY
|
protected AuthenticationDetailsSource |
authenticationDetailsSource
|
protected ApplicationEventPublisher |
eventPublisher
|
protected Log |
logger
|
protected MessageSourceAccessor |
messages
|
Constructor Summary | |
---|---|
AbstractProcessingFilter()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String ACEGI_SAVED_REQUEST_KEY
public static final String ACEGI_SECURITY_LAST_EXCEPTION_KEY
protected ApplicationEventPublisher eventPublisher
protected AuthenticationDetailsSource authenticationDetailsSource
protected final Log logger
protected MessageSourceAccessor messages
Constructor Detail |
---|
public AbstractProcessingFilter()
Method Detail |
---|
public void afterPropertiesSet() throws Exception
afterPropertiesSet
in interface InitializingBean
Exception
public abstract Authentication attemptAuthentication(HttpServletRequest request) throws AuthenticationException
request
- from which to extract parameters and perform the authentication
AuthenticationException
- if authentication failspublic void destroy()
destroy
in interface Filter
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException
doFilter
in interface Filter
IOException
ServletException
public String getAuthenticationFailureUrl()
public AuthenticationManager getAuthenticationManager()
public abstract String getDefaultFilterProcessesUrl()
filterProcessesUrl
for the implementation.
filterProcessesUrl
public String getDefaultTargetUrl()
public Properties getExceptionMappings()
public String getFilterProcessesUrl()
public RememberMeServices getRememberMeServices()
public void init(FilterConfig arg0) throws ServletException
init
in interface Filter
arg0
- ignored
ServletException
- ignoredpublic boolean isAlwaysUseDefaultTargetUrl()
public boolean isContinueChainBeforeSuccessfulAuthentication()
public static String obtainFullRequestUrl(HttpServletRequest request)
protected void onPreAuthentication(HttpServletRequest request, HttpServletResponse response) throws AuthenticationException, IOException
AuthenticationException
IOException
protected void onSuccessfulAuthentication(HttpServletRequest request, HttpServletResponse response, Authentication authResult) throws IOException
IOException
protected void onUnsuccessfulAuthentication(HttpServletRequest request, HttpServletResponse response, AuthenticationException failed) throws IOException
IOException
protected boolean requiresAuthentication(HttpServletRequest request, HttpServletResponse response)
Indicates whether this filter should attempt to process a login request for the current invocation.
It strips any parameters from the "path" section of the request URL (such as the jsessionid
parameter in http://host/myapp/index.html;jsessionid=blah) before matching against the
filterProcessesUrl
property.
Subclasses may override for special requirements, such as Tapestry integration.
request
- as received from the filter chainresponse
- as received from the filter chain
true
if the filter should attempt authentication, false
otherwiseprotected void sendRedirect(HttpServletRequest request, HttpServletResponse response, String url) throws IOException
IOException
public void setAlwaysUseDefaultTargetUrl(boolean alwaysUseDefaultTargetUrl)
public void setApplicationEventPublisher(ApplicationEventPublisher eventPublisher)
setApplicationEventPublisher
in interface ApplicationEventPublisherAware
public void setAuthenticationDetailsSource(AuthenticationDetailsSource authenticationDetailsSource)
public void setAuthenticationFailureUrl(String authenticationFailureUrl)
public void setAuthenticationManager(AuthenticationManager authenticationManager)
public void setContinueChainBeforeSuccessfulAuthentication(boolean continueChainBeforeSuccessfulAuthentication)
public void setDefaultTargetUrl(String defaultTargetUrl)
public void setExceptionMappings(Properties exceptionMappings)
public void setFilterProcessesUrl(String filterProcessesUrl)
public void setMessageSource(MessageSource messageSource)
setMessageSource
in interface MessageSourceAware
public void setRememberMeServices(RememberMeServices rememberMeServices)
protected void successfulAuthentication(HttpServletRequest request, HttpServletResponse response, Authentication authResult) throws IOException
IOException
protected void unsuccessfulAuthentication(HttpServletRequest request, HttpServletResponse response, AuthenticationException failed) throws IOException
IOException
public AuthenticationDetailsSource getAuthenticationDetailsSource()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |