[jboss-cvs] JBossAS SVN: r60880 - trunk/tomcat/src/main/org/jboss/web/tomcat/servlets.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Feb 25 08:50:37 EST 2007


Author: dimitris at jboss.org
Date: 2007-02-25 08:50:37 -0500 (Sun, 25 Feb 2007)
New Revision: 60880

Modified:
   trunk/tomcat/src/main/org/jboss/web/tomcat/servlets/ContextForwardServlet.java
Log:
add serialVersionUID

Modified: trunk/tomcat/src/main/org/jboss/web/tomcat/servlets/ContextForwardServlet.java
===================================================================
--- trunk/tomcat/src/main/org/jboss/web/tomcat/servlets/ContextForwardServlet.java	2007-02-25 13:49:18 UTC (rev 60879)
+++ trunk/tomcat/src/main/org/jboss/web/tomcat/servlets/ContextForwardServlet.java	2007-02-25 13:50:37 UTC (rev 60880)
@@ -1,24 +1,24 @@
 /*
-* JBoss, Home of Professional Open Source
-* Copyright 2005, JBoss Inc., and individual contributors as indicated
-* by the @authors tag. See the copyright.txt in the distribution for a
-* full listing of individual contributors.
-*
-* This is free software; you can redistribute it and/or modify it
-* under the terms of the GNU Lesser General Public License as
-* published by the Free Software Foundation; either version 2.1 of
-* the License, or (at your option) any later version.
-*
-* This software is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-* Lesser General Public License for more details.
-*
-* You should have received a copy of the GNU Lesser General Public
-* License along with this software; if not, write to the Free
-* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-*/
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package org.jboss.web.tomcat.servlets;
 
 import java.io.IOException;
@@ -46,6 +46,9 @@
  */
 public class ContextForwardServlet extends HttpServlet
 {
+   /** @since 4.2.0 */
+   static final long serialVersionUID = 5887848400339603842L;
+   
    private static Logger log = Logger.getLogger(ContextForwardServlet.class);
    /** The name of the context to which requests are forwarded */
    private String forwardContext = "/error-pages";




More information about the jboss-cvs-commits mailing list