You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jspwiki.apache.org by aj...@apache.org on 2008/07/04 02:00:22 UTC

svn commit: r673875 - /incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/PageManager.java

Author: ajaquith
Date: Thu Jul  3 17:00:22 2008
New Revision: 673875

URL: http://svn.apache.org/viewvc?rev=673875&view=rev
Log:
Made most of the workflow package, except for the set/getAttributes methods in the Workflow class, serializable. In the 3.0 timeframe, the rest of the package will be made serializable, too.

Modified:
    incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/PageManager.java

Modified: incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/PageManager.java
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/PageManager.java?rev=673875&r1=673874&r2=673875&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/PageManager.java (original)
+++ incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/PageManager.java Thu Jul  3 17:00:22 2008
@@ -662,6 +662,7 @@
      */
     public static class PreSaveWikiPageTask extends Task
     {
+        private static final long serialVersionUID = 6304715570092804615L;
         private final WikiContext m_context;
         private final String m_proposedText;
 
@@ -730,6 +731,8 @@
      */
     public static class SaveWikiPageTask extends Task
     {
+        private static final long serialVersionUID = 3190559953484411420L;
+
         /**
          *  Creates the Task.
          */