Class AuthorizingAnnotationHandler

    • Constructor Summary

      Constructors 
      Constructor Description
      <? extends > annotationClass)
      Constructs an AuthorizingAnnotationHandler who processes annotations of the specified type.
    • Constructor Detail

      • AuthorizingAnnotationHandler

        public AuthorizingAnnotationHandler​(<? extends > annotationClass)
        Constructs an AuthorizingAnnotationHandler who processes annotations of the specified type. Immediately calls super(annotationClass).
        Parameters:
        annotationClass - the type of annotation this handler will process.
    • Method Detail

      • assertAuthorized

        public abstract void assertAuthorized​( a)
                                       throws AuthorizationException
        Ensures the calling Subject is authorized to execute based on the directive(s) found in the given annotation.

        As this is an AnnotationMethodInterceptor, the implementations of this method typically inspect the annotation and perform a corresponding authorization check based.

        Parameters:
        a - the Annotation to check for performing an authorization check.
        Throws:
        AuthorizationException - if the class/instance/method is not allowed to proceed/execute.