Class PrePostAdviceReactiveMethodInterceptor
- java.lang.Object
-
- org.springframework.security.access.prepost.PrePostAdviceReactiveMethodInterceptor
-
- All Implemented Interfaces:
org.aopalliance.aop.Advice
,org.aopalliance.intercept.Interceptor
,org.aopalliance.intercept.MethodInterceptor
@Deprecated public class PrePostAdviceReactiveMethodInterceptor extends java.lang.Object implements org.aopalliance.intercept.MethodInterceptor
Deprecated.AMethodInterceptor
that supportsPreAuthorize
andPostAuthorize
for methods that returnMono
orFlux
and Kotlin coroutine functions.- Since:
- 5.0
-
-
Constructor Summary
Constructors Constructor Description PrePostAdviceReactiveMethodInterceptor(MethodSecurityMetadataSource attributeSource, PreInvocationAuthorizationAdvice preInvocationAdvice, PostInvocationAuthorizationAdvice postInvocationAdvice)
Deprecated.Creates a new instance
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.Object
invoke(org.aopalliance.intercept.MethodInvocation invocation)
Deprecated.
-
-
-
Constructor Detail
-
PrePostAdviceReactiveMethodInterceptor
public PrePostAdviceReactiveMethodInterceptor(MethodSecurityMetadataSource attributeSource, PreInvocationAuthorizationAdvice preInvocationAdvice, PostInvocationAuthorizationAdvice postInvocationAdvice)
Deprecated.Creates a new instance- Parameters:
attributeSource
- theMethodSecurityMetadataSource
to usepreInvocationAdvice
- thePreInvocationAuthorizationAdvice
to usepostInvocationAdvice
- thePostInvocationAuthorizationAdvice
to use
-
-