Fix copy and paste error
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 6 Jun 2009 12:49:52 +0000 (12:49 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 6 Jun 2009 12:49:52 +0000 (12:49 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@782245 13f79535-47bb-0310-9956-ffa450edef68

java/javax/servlet/SessionCookieConfig.java

index 526f0fa..4678e45 100644 (file)
@@ -18,8 +18,9 @@ package javax.servlet;
 
 /**
  * 
- * @since 3.0
+ * @since Servlet 3.0
  * $Id$
+ * TODO SERVLET3 - Add comments
  */
 public interface SessionCookieConfig {
     
@@ -84,6 +85,6 @@ public interface SessionCookieConfig {
      */
     public void setMaxAge(int MaxAge);
     
-    public int getHttpOnly();
+    public int getMaxAge();
     
 }