001package org.tynamo.security;
002
003import java.lang.annotation.Documented;
004import java.lang.annotation.Retention;
005import java.lang.annotation.Target;
006
007import static java.lang.annotation.ElementType.*;
008import static java.lang.annotation.RetentionPolicy.RUNTIME;
009
010@Target({PARAMETER, FIELD, METHOD})
011@Retention(RUNTIME)
012@Documented
013public @interface Security {
014}