You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by iv...@apache.org on 2009/04/17 19:40:47 UTC

svn commit: r766097 - /wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/https/RequireHttps.java

Author: ivaynberg
Date: Fri Apr 17 17:40:47 2009
New Revision: 766097

URL: http://svn.apache.org/viewvc?rev=766097&view=rev
Log:
javadoc tweak for WICKET-2229
Issue: WICKET-2229

Modified:
    wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/https/RequireHttps.java

Modified: wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/https/RequireHttps.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/https/RequireHttps.java?rev=766097&r1=766096&r2=766097&view=diff
==============================================================================
--- wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/https/RequireHttps.java (original)
+++ wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/https/RequireHttps.java Fri Apr 17 17:40:47 2009
@@ -17,6 +17,7 @@
 package org.apache.wicket.protocol.https;
 
 import java.lang.annotation.ElementType;
+import java.lang.annotation.Inherited;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
 import java.lang.annotation.Target;
@@ -24,6 +25,9 @@
 /**
  * Marks a page as requiring https.
  * 
+ * NOTES: Adding {@link Inherited} annotation to this annotation will not work because we also want
+ * it to work for interfaces
+ * 
  * @see HttpsRequestCycleProcessor
  * 
  */