You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2013/05/10 11:40:44 UTC

svn commit: r1480964 - in /tomcat/trunk/java: javax/servlet/ServletContext.java org/apache/catalina/core/Constants.java

Author: markt
Date: Fri May 10 09:40:44 2013
New Revision: 1480964

URL: http://svn.apache.org/r1480964
Log:
Tomcat 8 implements Servlet 3.1

Modified:
    tomcat/trunk/java/javax/servlet/ServletContext.java
    tomcat/trunk/java/org/apache/catalina/core/Constants.java

Modified: tomcat/trunk/java/javax/servlet/ServletContext.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/javax/servlet/ServletContext.java?rev=1480964&r1=1480963&r2=1480964&view=diff
==============================================================================
--- tomcat/trunk/java/javax/servlet/ServletContext.java (original)
+++ tomcat/trunk/java/javax/servlet/ServletContext.java Fri May 10 09:40:44 2013
@@ -87,7 +87,7 @@ public interface ServletContext {
 
     /**
      * Returns the major version of the Java Servlet API that this servlet
-     * container supports. All implementations that comply with Version 3.0 must
+     * container supports. All implementations that comply with Version 3.1 must
      * have this method return the integer 3.
      *
      * @return 3
@@ -96,8 +96,8 @@ public interface ServletContext {
 
     /**
      * Returns the minor version of the Servlet API that this servlet container
-     * supports. All implementations that comply with Version 3.0 must have this
-     * method return the integer 0.
+     * supports. All implementations that comply with Version 3.1 must have this
+     * method return the integer 1.
      *
      * @return 0
      */

Modified: tomcat/trunk/java/org/apache/catalina/core/Constants.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/Constants.java?rev=1480964&r1=1480963&r2=1480964&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/core/Constants.java (original)
+++ tomcat/trunk/java/org/apache/catalina/core/Constants.java Fri May 10 09:40:44 2013
@@ -23,7 +23,7 @@ public class Constants {
 
     public static final String Package = "org.apache.catalina.core";
     public static final int MAJOR_VERSION = 3;
-    public static final int MINOR_VERSION = 0;
+    public static final int MINOR_VERSION = 1;
 
     public static final String JSP_SERVLET_CLASS =
         "org.apache.jasper.servlet.JspServlet";



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org