parent
f27ad296d0
commit
5e091b94a9
|
@ -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;
|
||||
|
|
|
@ -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 {
|
||||
|
||||
/**
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue