Class MethodInvocationResult
java.lang.Object
org.springframework.security.authorization.method.MethodInvocationResult
A context object that contains a 
MethodInvocation and the result of that
 MethodInvocation.- Since:
- 5.6
- 
Constructor SummaryConstructorsConstructorDescriptionMethodInvocationResult(org.aopalliance.intercept.MethodInvocation methodInvocation, Object result) Construct aMethodInvocationResultwith the provided parameters
- 
Method SummaryModifier and TypeMethodDescriptionorg.aopalliance.intercept.MethodInvocationReturn the already-invokedMethodInvocationReturn the result of the already-invokedMethodInvocation
- 
Constructor Details- 
MethodInvocationResultpublic MethodInvocationResult(org.aopalliance.intercept.MethodInvocation methodInvocation, Object result) Construct aMethodInvocationResultwith the provided parameters- Parameters:
- methodInvocation- the already-invoked- MethodInvocation
- result- the value returned from the- MethodInvocation
 
 
- 
- 
Method Details- 
getMethodInvocationpublic org.aopalliance.intercept.MethodInvocation getMethodInvocation()Return the already-invokedMethodInvocation- Returns:
- the already-invoked MethodInvocation
 
- 
getResultReturn the result of the already-invokedMethodInvocation- Returns:
- the result
 
 
-