/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package net.paulgray.lmsrest.web; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * * @author pfgray */ @Documented @Target({ElementType.PARAMETER}) @Retention(RetentionPolicy.RUNTIME) public @interface ContextUser { /** * * @return */ boolean required() default true; }