Class PreFilterAuthorizationMethodInterceptor
- java.lang.Object
-
- org.springframework.security.authorization.method.PreFilterAuthorizationMethodInterceptor
-
- All Implemented Interfaces:
org.aopalliance.aop.Advice,org.aopalliance.intercept.Interceptor,org.aopalliance.intercept.MethodInterceptor,org.springframework.aop.Advisor,org.springframework.aop.framework.AopInfrastructureBean,org.springframework.aop.PointcutAdvisor,org.springframework.core.Ordered
public final class PreFilterAuthorizationMethodInterceptor extends java.lang.Object implements org.springframework.core.Ordered, org.aopalliance.intercept.MethodInterceptor, org.springframework.aop.PointcutAdvisor, org.springframework.aop.framework.AopInfrastructureBeanAMethodInterceptorwhich filters a method argument by evaluating an expression from thePreFilterannotation.- Since:
- 5.6
-
-
Constructor Summary
Constructors Constructor Description PreFilterAuthorizationMethodInterceptor()Creates aPreFilterAuthorizationMethodInterceptorusing the provided parameters
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.aopalliance.aop.AdvicegetAdvice()intgetOrder()org.springframework.aop.PointcutgetPointcut()java.lang.Objectinvoke(org.aopalliance.intercept.MethodInvocation mi)Filter the method argument specified in thePreFilterannotation thatMethodInvocationspecifies.booleanisPerInstance()voidsetExpressionHandler(MethodSecurityExpressionHandler expressionHandler)Use thisMethodSecurityExpressionHandlervoidsetOrder(int order)
-
-
-
Constructor Detail
-
PreFilterAuthorizationMethodInterceptor
public PreFilterAuthorizationMethodInterceptor()
Creates aPreFilterAuthorizationMethodInterceptorusing the provided parameters
-
-
Method Detail
-
setExpressionHandler
public void setExpressionHandler(MethodSecurityExpressionHandler expressionHandler)
Use thisMethodSecurityExpressionHandler- Parameters:
expressionHandler- theMethodSecurityExpressionHandlerto use
-
getOrder
public int getOrder()
- Specified by:
getOrderin interfaceorg.springframework.core.Ordered
-
setOrder
public void setOrder(int order)
-
getPointcut
public org.springframework.aop.Pointcut getPointcut()
- Specified by:
getPointcutin interfaceorg.springframework.aop.PointcutAdvisor
-
getAdvice
public org.aopalliance.aop.Advice getAdvice()
- Specified by:
getAdvicein interfaceorg.springframework.aop.Advisor
-
isPerInstance
public boolean isPerInstance()
- Specified by:
isPerInstancein interfaceorg.springframework.aop.Advisor
-
invoke
public java.lang.Object invoke(org.aopalliance.intercept.MethodInvocation mi) throws java.lang.ThrowableFilter the method argument specified in thePreFilterannotation thatMethodInvocationspecifies.- Specified by:
invokein interfaceorg.aopalliance.intercept.MethodInterceptor- Parameters:
mi- theMethodInvocationto check- Throws:
java.lang.Throwable
-
-