Revision: 476
          http://svn.sourceforge.net/stripes/?rev=476&view=rev
Author:   tfenne
Date:     2007-01-08 19:26:18 -0800 (Mon, 08 Jan 2007)

Log Message:
-----------
Fix for STS-327: SimpleMessage is not serializable. I've modified the Message 
interface to extend Serializable, therefore making all message and error 
classes serializable.

Modified Paths:
--------------
    trunk/stripes/src/net/sourceforge/stripes/action/Message.java

Modified: trunk/stripes/src/net/sourceforge/stripes/action/Message.java
===================================================================
--- trunk/stripes/src/net/sourceforge/stripes/action/Message.java       
2007-01-08 12:52:49 UTC (rev 475)
+++ trunk/stripes/src/net/sourceforge/stripes/action/Message.java       
2007-01-09 03:26:18 UTC (rev 476)
@@ -15,6 +15,7 @@
 package net.sourceforge.stripes.action;
 
 import java.util.Locale;
+import java.io.Serializable;
 
 /**
  * Represents a message that can be displayed to the user.  Encapsulates 
commonalities
@@ -23,7 +24,7 @@
  *
  * @author Tim Fennell
  */
-public interface Message {
+public interface Message extends Serializable {
     /**
      * Provides a message that can be displayed to the user. The message must 
be a String,
      * and should be in the language and locale appropriate for the user.


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development

Reply via email to