package net.sourceforge.stripes.action; 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; /** *

* Annotation that marks an ActionBean as secure (i.e. an ActionBean that * requires SSL protection) URLs generated by the Stripes tag library will be * automatically rewritten *

* * * * @author Christian Schwanke */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface Secure { }