Make compatible with interface changes to aopalliance.jar.
This commit is contained in:
@@ -67,11 +67,11 @@ public class BankSecurityVoter implements AccessDecisionVoter {
|
||||
// Lookup the account number being passed
|
||||
Integer accountNumber = null;
|
||||
|
||||
for (int i = 0; i < invocation.getArgumentCount(); i++) {
|
||||
Class argClass = invocation.getArgument(i).getClass();
|
||||
for (int i = 0; i < invocation.getArguments().length; i++) {
|
||||
Class argClass = invocation.getArguments()[i].getClass();
|
||||
|
||||
if (Integer.class.isAssignableFrom(argClass)) {
|
||||
accountNumber = (Integer) invocation.getArgument(i);
|
||||
accountNumber = (Integer) invocation.getArguments()[i];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -15,7 +15,6 @@
|
||||
|
||||
package net.sf.acegisecurity.attribute;
|
||||
|
||||
import org.aopalliance.intercept.AttributeRegistry;
|
||||
import org.aopalliance.intercept.Invocation;
|
||||
import org.aopalliance.intercept.MethodInvocation;
|
||||
|
||||
@@ -66,13 +65,6 @@ public class MockMethodInvocation implements MethodInvocation {
|
||||
throw new UnsupportedOperationException("mock method not implemented");
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see org.aopalliance.intercept.Invocation#getAttributeRegistry()
|
||||
*/
|
||||
public AttributeRegistry getAttributeRegistry() {
|
||||
throw new UnsupportedOperationException("mock method not implemented");
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see org.aopalliance.intercept.MethodInvocation#getMethod()
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user