public class DigestAuthenticationEntryPoint extends java.lang.Object implements AuthenticationEntryPoint, org.springframework.beans.factory.InitializingBean, org.springframework.core.Ordered
SecurityEnforcementFilter to commence authentication via the
 DigestAuthenticationFilter.
 
 The nonce sent back to the user agent will be valid for the period indicated by
 setNonceValiditySeconds(int). By default this is 300 seconds. Shorter times
 should be used if replay attacks are a major concern. Larger values can be used if
 performance is a greater concern. This class correctly presents the
 stale=true header when the nonce has expired, so properly implemented user
 agents will automatically renegotiate with a new nonce value (i.e. without presenting a
 new password dialog box to the user).
| Constructor and Description | 
|---|
| DigestAuthenticationEntryPoint() | 
| Modifier and Type | Method and Description | 
|---|---|
| void | afterPropertiesSet() | 
| void | commence(javax.servlet.http.HttpServletRequest request,
        javax.servlet.http.HttpServletResponse response,
        AuthenticationException authException)Commences an authentication scheme. | 
| java.lang.String | getKey() | 
| int | getNonceValiditySeconds() | 
| int | getOrder() | 
| java.lang.String | getRealmName() | 
| void | setKey(java.lang.String key) | 
| void | setNonceValiditySeconds(int nonceValiditySeconds) | 
| void | setOrder(int order) | 
| void | setRealmName(java.lang.String realmName) | 
public int getOrder()
getOrder in interface org.springframework.core.Orderedpublic void setOrder(int order)
public void afterPropertiesSet()
                        throws java.lang.Exception
afterPropertiesSet in interface org.springframework.beans.factory.InitializingBeanjava.lang.Exceptionpublic void commence(javax.servlet.http.HttpServletRequest request,
                     javax.servlet.http.HttpServletResponse response,
                     AuthenticationException authException)
              throws java.io.IOException,
                     javax.servlet.ServletException
AuthenticationEntryPoint
 ExceptionTranslationFilter will populate the HttpSession
 attribute named
 AbstractAuthenticationProcessingFilter.SPRING_SECURITY_SAVED_REQUEST_KEY
 with the requested target URL before calling this method.
 
 Implementations should modify the headers on the ServletResponse as
 necessary to commence the authentication process.
commence in interface AuthenticationEntryPointrequest - that resulted in an AuthenticationExceptionresponse - so that the user agent can begin authenticationauthException - that caused the invocationjava.io.IOExceptionjavax.servlet.ServletExceptionpublic java.lang.String getKey()
public int getNonceValiditySeconds()
public java.lang.String getRealmName()
public void setKey(java.lang.String key)
public void setNonceValiditySeconds(int nonceValiditySeconds)
public void setRealmName(java.lang.String realmName)