Deprecate RemoteAuthentication* for 5.6

Closes gh-10430
This commit is contained in:
Steve Riesenberg 2021-10-21 10:58:06 -05:00 committed by Steve Riesenberg
parent f27ad296d0
commit 5e091b94a9
5 changed files with 9 additions and 0 deletions

View File

@ -28,7 +28,9 @@ import org.springframework.security.core.SpringSecurityCoreVersion;
* issues for the remoting protocol.
*
* @author Ben Alex
* @deprecated as of 5.6.0 with no replacement
*/
@Deprecated
public class RemoteAuthenticationException extends NestedRuntimeException {
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;

View File

@ -24,7 +24,9 @@ import org.springframework.security.core.GrantedAuthority;
* Allows remote clients to attempt authentication.
*
* @author Ben Alex
* @deprecated as of 5.6.0 with no replacement
*/
@Deprecated
public interface RemoteAuthenticationManager {
/**

View File

@ -32,7 +32,9 @@ import org.springframework.util.Assert;
* configured <code>AuthenticationManager</code> to resolve an authentication request.
*
* @author Ben Alex
* @deprecated as of 5.6.0 with no replacement
*/
@Deprecated
public class RemoteAuthenticationManagerImpl implements RemoteAuthenticationManager, InitializingBean {
private AuthenticationManager authenticationManager;

View File

@ -49,7 +49,9 @@ import org.springframework.util.Assert;
* </p>
*
* @author Ben Alex
* @deprecated as of 5.6.0 with no replacement
*/
@Deprecated
public class RemoteAuthenticationProvider implements AuthenticationProvider, InitializingBean {
private RemoteAuthenticationManager remoteAuthenticationManager;

View File

@ -17,5 +17,6 @@
/**
* Allows remote clients to authenticate and obtain a populated
* <code>Authentication</code> object.
* @deprecated as of 5.6.0 with no replacement
*/
package org.springframework.security.authentication.rcp;