package net.techreadiness.struts2.configuration; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.RetentionPolicy.RUNTIME; import java.lang.annotation.Documented; import java.lang.annotation.Retention; import java.lang.annotation.Target; @Target({ FIELD }) @Retention(RUNTIME) @Documented public @interface SessionScoped { // No attributes for annotation }