001 /*
002 * Licensed to the Apache Software Foundation (ASF) under one
003 * or more contributor license agreements. See the NOTICE file
004 * distributed with this work for additional information
005 * regarding copyright ownership. The ASF licenses this file
006 * to you under the Apache License, Version 2.0 (the
007 * "License"); you may not use this file except in compliance
008 * with the License. You may obtain a copy of the License at
009 *
010 * http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing,
013 * software distributed under the License is distributed on an
014 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015 * KIND, either express or implied. See the License for the
016 * specific language governing permissions and limitations
017 * under the License.
018 */
019 package org.apache.shiro.authz.aop;
020
021 import java.lang.annotation.Annotation;
022
023 import org.apache.shiro.aop.AnnotationHandler;
024 import org.apache.shiro.authz.AuthorizationException;
025
026 /**
027 * An AnnotationHandler that executes authorization (access control) behavior based on directive(s) found in a
028 * JSR-175 Annotation.
029 *
030 * @since 0.9.0
031 * @author Les Hazlewood
032 */
033 public abstract class AuthorizingAnnotationHandler extends AnnotationHandler {
034
035 /**
036 * Constructs an <code>AuthorizingAnnotationHandler</code> who processes annotations of the
037 * specified type. Immediately calls <code>super(annotationClass)</code>.
038 *
039 * @param annotationClass the type of annotation this handler will process.
040 */
041 public AuthorizingAnnotationHandler(Class<? extends Annotation> annotationClass) {
042 super(annotationClass);
043 }
044
045 /**
046 * Ensures the calling Subject is authorized to execute based on the directive(s) found in the given
047 * annotation.
048 * <p/>
049 * As this is an AnnotationMethodInterceptor, the implementations of this method typically inspect the annotation
050 * and perform a corresponding authorization check based.
051 *
052 * @param a the <code>Annotation</code> to check for performing an authorization check.
053 * @throws org.apache.shiro.authz.AuthorizationException if the class/instance/method is not allowed to proceed/execute.
054 */
055 public abstract void assertAuthorized(Annotation a) throws AuthorizationException;
056 }