001package usecase.auth; 002 003import javax.interceptor.InterceptorBinding; 004import java.lang.annotation.Documented; 005import java.lang.annotation.Inherited; 006import java.lang.annotation.Retention; 007import java.lang.annotation.Target; 008 009import static java.lang.annotation.ElementType.METHOD; 010import static java.lang.annotation.ElementType.TYPE; 011import static java.lang.annotation.RetentionPolicy.RUNTIME; 012 013@Inherited 014@InterceptorBinding 015@Retention(RUNTIME) 016@Documented 017@Target({METHOD, TYPE}) 018public @interface AdminsOnly { 019}