Uses of Interface
org.apache.shiro.aop.AnnotationResolver
-
Packages that use AnnotationResolver Package Description org.apache.shiro.aop Components used to support the framework's AOP/interception support classes.org.apache.shiro.authz.aop Contains AOP implementation support classes specifically used for authorization operations, particularly supporting AOP Method Interceptors and JSR-175 metadata Annotations. -
-
Uses of AnnotationResolver in org.apache.shiro.aop
Classes in org.apache.shiro.aop that implement AnnotationResolver Modifier and Type Class Description class
DefaultAnnotationResolver
DefaultAnnotationResolver
implementation that merely inspects theMethodInvocation
'starget method
, and returnstargetMethod
.getAnnotation(class)
.Methods in org.apache.shiro.aop that return AnnotationResolver Modifier and Type Method Description AnnotationResolver
AnnotationMethodInterceptor. getResolver()
Returns theAnnotationResolver
to use to acquire annotations from intercepted methods at runtime.Methods in org.apache.shiro.aop with parameters of type AnnotationResolver Modifier and Type Method Description void
AnnotationMethodInterceptor. setResolver(AnnotationResolver resolver)
Returns theAnnotationResolver
to use to acquire annotations from intercepted methods at runtime.Constructors in org.apache.shiro.aop with parameters of type AnnotationResolver Constructor Description AnnotationMethodInterceptor(AnnotationHandler handler, AnnotationResolver resolver)
Constructs anAnnotationMethodInterceptor
with theAnnotationHandler
that will be used to process annotations of a corresponding type, using the specifiedAnnotationResolver
to acquire annotations at runtime. -
Uses of AnnotationResolver in org.apache.shiro.authz.aop
Constructors in org.apache.shiro.authz.aop with parameters of type AnnotationResolver Constructor Description AuthenticatedAnnotationMethodInterceptor(AnnotationResolver resolver)
AuthorizingAnnotationMethodInterceptor(AuthorizingAnnotationHandler handler, AnnotationResolver resolver)
GuestAnnotationMethodInterceptor(AnnotationResolver resolver)
PermissionAnnotationMethodInterceptor(AnnotationResolver resolver)
RoleAnnotationMethodInterceptor(AnnotationResolver resolver)
UserAnnotationMethodInterceptor(AnnotationResolver resolver)
-