mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-07-24 03:03:44 +00:00
is the BasicProcessingFilterEntryPoint where the authException.getMessage() is used to send back an informative 401, instead of just the error code. Added AccessDeniedException to the sendAccessDeniedError method signature. The accessDeniedException.getMessage() result is used to send an invormative 403 error back to the servletResponse by default.
23 lines
682 B
HTML
23 lines
682 B
HTML
<html>
|
|
<head>
|
|
<title>Acegi Security - Upgrading from version 0.7.0 to 1.0.0</title>
|
|
</head>
|
|
<body>
|
|
<h1>Upgrading from 0.7.0 to 1.0.0</h1>
|
|
|
|
<p>
|
|
The following should help most casual users of the project update their
|
|
applications:
|
|
|
|
<ul>
|
|
|
|
<li>The JaasAuthenticationCallbackHandler interface has had it's setAuthentication method removed.
|
|
The handle method now takes both the Callback and Authentication objects as arguments.</li>
|
|
<li>Added AuthenticationException to the AutenticationEntryPoint.commence method signature.</li>
|
|
<li>Added AccessDeniedException to the SecurityEncorcementFilter.sendAccessDeniedError method signature.</li>
|
|
|
|
</ul>
|
|
|
|
</body>
|
|
</html>
|