Browse Source

SEC-758: Both AspectJSecurityInterceptor and AspectJAnnotationSecurityInterceptor not usable with @AspectJ notation

http://jira.springframework.org/browse/SEC-758. Added "throws Throwable" to AspectJAnnotationCallback signature.
2.0.x
Luke Taylor 18 years ago
parent
commit
09cf90258f
  1. 2
      core/src/main/java/org/springframework/security/intercept/method/aspectj/AspectJAnnotationCallback.java

2
core/src/main/java/org/springframework/security/intercept/method/aspectj/AspectJAnnotationCallback.java

@ -12,5 +12,5 @@ package org.springframework.security.intercept.method.aspectj; @@ -12,5 +12,5 @@ package org.springframework.security.intercept.method.aspectj;
public interface AspectJAnnotationCallback {
//~ Methods ========================================================================================================
Object proceedWithObject();
Object proceedWithObject() throws Throwable;
}

Loading…
Cancel
Save