package edu.asu.spring.quadriga.aspects.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * User defined annotation to be executed at run time. * @author Kiran Kumar */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface NoAuthorizationCheck { }