Package org.apache.shiro.authz.aop
Class GuestAnnotationMethodInterceptor
- java.lang.Object
-
- org.apache.shiro.aop.MethodInterceptorSupport
-
- org.apache.shiro.aop.AnnotationMethodInterceptor
-
- org.apache.shiro.authz.aop.AuthorizingAnnotationMethodInterceptor
-
- org.apache.shiro.authz.aop.GuestAnnotationMethodInterceptor
-
- All Implemented Interfaces:
MethodInterceptor
public class GuestAnnotationMethodInterceptor extends AuthorizingAnnotationMethodInterceptor
Checks to see if a @RequiresGuest
annotation is declared, and if so, ensures the callingSubject
does not have anidentity
before invoking the method.This annotation essentially ensures that
subject.
.getPrincipal()
== null- Since:
- 0.9.0
-
-
Constructor Summary
Constructors Constructor Description GuestAnnotationMethodInterceptor()
Default no-argument constructor that ensures this interceptor looks forRequiresGuest
annotations in a method declaration.GuestAnnotationMethodInterceptor(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
-
GuestAnnotationMethodInterceptor
public GuestAnnotationMethodInterceptor()
Default no-argument constructor that ensures this interceptor looks forRequiresGuest
annotations in a method declaration.
-
GuestAnnotationMethodInterceptor
public GuestAnnotationMethodInterceptor(AnnotationResolver resolver)
- Parameters:
resolver
-- Since:
- 1.1
-
-