Add AspectJ AuthorizationManager Support
Closes gh-11326
This commit is contained in:
+4
@@ -22,7 +22,11 @@ package org.springframework.security.access.intercept.aspectj;
|
||||
* simple <code>return proceed();</code> statement.
|
||||
*
|
||||
* @author Ben Alex
|
||||
* @deprecated This class will be removed from the public API. Please either use
|
||||
* `spring-security-aspects`, Spring Security's method security support or create your own
|
||||
* class that uses Spring AOP annotations.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface AspectJCallback {
|
||||
|
||||
Object proceedWithObject();
|
||||
|
||||
+4
@@ -33,7 +33,11 @@ import org.springframework.security.access.intercept.aopalliance.MethodSecurityI
|
||||
* @author Luke Taylor
|
||||
* @author Rob Winch
|
||||
* @since 3.0.3
|
||||
* @deprecated This class will be removed from the public API. Please either use
|
||||
* `spring-security-aspects`, Spring Security's method security support or create your own
|
||||
* class that uses Spring AOP annotations.
|
||||
*/
|
||||
@Deprecated
|
||||
public final class AspectJMethodSecurityInterceptor extends MethodSecurityInterceptor {
|
||||
|
||||
/**
|
||||
|
||||
+3
@@ -32,7 +32,10 @@ import org.springframework.util.Assert;
|
||||
*
|
||||
* @author Luke Taylor
|
||||
* @since 3.0.3
|
||||
* @deprecated This class will be removed from the public API. See
|
||||
* `JoinPointMethodInvocation` in `spring-security-aspects` for its replacement
|
||||
*/
|
||||
@Deprecated
|
||||
public final class MethodInvocationAdapter implements MethodInvocation {
|
||||
|
||||
private final ProceedingJoinPoint jp;
|
||||
|
||||
Reference in New Issue
Block a user