Class MethodInvocationAdapter
- java.lang.Object
-
- org.springframework.security.access.intercept.aspectj.MethodInvocationAdapter
-
- All Implemented Interfaces:
org.aopalliance.intercept.Invocation
,org.aopalliance.intercept.Joinpoint
,org.aopalliance.intercept.MethodInvocation
@Deprecated public final class MethodInvocationAdapter extends java.lang.Object implements org.aopalliance.intercept.MethodInvocation
Deprecated.This class will be removed from the public API. See `JoinPointMethodInvocation` in `spring-security-aspects` for its replacementDecorates a JoinPoint to allow it to be used with method-security infrastructure classes which supportMethodInvocation
instances.- Since:
- 3.0.3
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.Object[]
getArguments()
Deprecated.java.lang.reflect.Method
getMethod()
Deprecated.java.lang.reflect.AccessibleObject
getStaticPart()
Deprecated.java.lang.Object
getThis()
Deprecated.java.lang.Object
proceed()
Deprecated.
-
-
-
Method Detail
-
getMethod
public java.lang.reflect.Method getMethod()
Deprecated.- Specified by:
getMethod
in interfaceorg.aopalliance.intercept.MethodInvocation
-
getArguments
public java.lang.Object[] getArguments()
Deprecated.- Specified by:
getArguments
in interfaceorg.aopalliance.intercept.Invocation
-
getStaticPart
public java.lang.reflect.AccessibleObject getStaticPart()
Deprecated.- Specified by:
getStaticPart
in interfaceorg.aopalliance.intercept.Joinpoint
-
getThis
public java.lang.Object getThis()
Deprecated.- Specified by:
getThis
in interfaceorg.aopalliance.intercept.Joinpoint
-
proceed
public java.lang.Object proceed() throws java.lang.Throwable
Deprecated.- Specified by:
proceed
in interfaceorg.aopalliance.intercept.Joinpoint
- Throws:
java.lang.Throwable
-
-