-
Notifications
You must be signed in to change notification settings - Fork 1.1k
GH-3897: Deprecate ChannelSecurityInterceptor
#3915
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just doc polishing.
Needs rebase/conflicts. |
Looks like there are more deprecation warnings. Do not merge yet. |
Fixes spring-projects#3897 Spring Security has deprecated `AccessDecisionManager` and all its infrastructure in favor of `AuthorizationManager` * Deprecate and AOP `ChannelSecurityInterceptor` and all its infrastructure, including `@SecuredChannel` and respective XML configuration. The `AuthorizationChannelInterceptor` added to respective channels for security or configured as a global channel interceptor fully covers the previous AOP configuration * Fix deprecation warnings in other tests with security
Co-authored-by: Gary Russell <[email protected]>
…asses: looks like to mark `@Deprecated` and even `@SuppressWarnings("deprecation")` don't silence warnings on compilation
|
Looks like that one was an interim failure. |
Conflict in build.grade. |
Fixes #3897
Spring Security has deprecated
AccessDecisionManager
and all its infrastructure in favor ofAuthorizationManager
ChannelSecurityInterceptor
and all its infrastructure, including@SecuredChannel
and respective XML configuration. TheAuthorizationChannelInterceptor
added to respective channels for security or configured as a global channel interceptor fully covers the previous AOP configuration