Package org.apache.shiro.authz.aop
Class UserAnnotationMethodInterceptor
- java.lang.Object
-
- org.apache.shiro.aop.MethodInterceptorSupport
-
- org.apache.shiro.aop.AnnotationMethodInterceptor
-
- org.apache.shiro.authz.aop.AuthorizingAnnotationMethodInterceptor
-
- org.apache.shiro.authz.aop.UserAnnotationMethodInterceptor
-
- All Implemented Interfaces:
MethodInterceptor
public class UserAnnotationMethodInterceptor extends AuthorizingAnnotationMethodInterceptor
Checks to see if a @RequiresUser
annotation is declared, and if so, ensures the callingSubject
is eitherauthenticated
or remembered via remember me services before invoking the method.This annotation essentially ensures that
subject.
.getPrincipal()
!= null- Since:
- 0.9.0
-
-
Constructor Summary
Constructors Constructor Description UserAnnotationMethodInterceptor()
Default no-argument constructor that ensures this interceptor looks forRequiresUser
annotations in a method declaration.UserAnnotationMethodInterceptor(AnnotationResolver resolver)
-
Method Summary
-
Methods inherited from class org.apache.shiro.authz.aop.AuthorizingAnnotationMethodInterceptor
assertAuthorized, invoke
-
Methods inherited from class org.apache.shiro.aop.AnnotationMethodInterceptor
getAnnotation, getHandler, getResolver, setHandler, setResolver, supports
-
Methods inherited from class org.apache.shiro.aop.MethodInterceptorSupport
getSubject
-
-
-
-
Constructor Detail
-
UserAnnotationMethodInterceptor
public UserAnnotationMethodInterceptor()
Default no-argument constructor that ensures this interceptor looks forRequiresUser
annotations in a method declaration.
-
UserAnnotationMethodInterceptor
public UserAnnotationMethodInterceptor(AnnotationResolver resolver)
- Parameters:
resolver
-- Since:
- 1.1
-
-