]> source.dussan.org Git - vaadin-framework.git/commitdiff
Make new classes serializable
authorLeif Åstrand <leif@vaadin.com>
Thu, 26 Apr 2012 05:56:04 +0000 (05:56 +0000)
committerLeif Åstrand <leif@vaadin.com>
Thu, 26 Apr 2012 05:56:04 +0000 (05:56 +0000)
svn changeset:23633/svn branch:6.8

src/com/vaadin/terminal/gwt/server/RequestTimer.java

index 5ed89c2d29cbdd695f4c0f86fbade24b7225efc9..1df65d6c58de99f4bbaab5bef1f01fbeae3a5838 100644 (file)
@@ -4,6 +4,8 @@
 
 package com.vaadin.terminal.gwt.server;
 
+import java.io.Serializable;
+
 import javax.portlet.PortletRequest;
 import javax.portlet.PortletSession;
 import javax.servlet.http.HttpServletRequest;
@@ -17,7 +19,7 @@ import javax.servlet.http.HttpSession;
  * 
  * @author Jonatan Kronqvist / Vaadin Ltd
  */
-public class RequestTimer {
+public class RequestTimer implements Serializable {
     public static final String SESSION_ATTR_ID = "REQUESTTIMER";
 
     private long requestStartTime = 0;
@@ -29,7 +31,7 @@ public class RequestTimer {
      * attributes on HttpServletRequests and PortletRequests. Using this class
      * we don't need to duplicate code everywhere.
      */
-    static class RequestWrapper {
+    static class RequestWrapper implements Serializable {
         private final HttpServletRequest servletRequest;
         private final PortletRequest portletRequest;