Return-Path: Delivered-To: apmail-jakarta-hivemind-cvs-archive@www.apache.org Received: (qmail 50531 invoked from network); 2 Mar 2005 05:15:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 2 Mar 2005 05:15:11 -0000 Received: (qmail 54258 invoked by uid 500); 2 Mar 2005 05:15:11 -0000 Delivered-To: apmail-jakarta-hivemind-cvs-archive@jakarta.apache.org Received: (qmail 54241 invoked by uid 500); 2 Mar 2005 05:15:10 -0000 Mailing-List: contact hivemind-cvs-help@jakarta.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: hivemind-dev@jakarta.apache.org Delivered-To: mailing list hivemind-cvs@jakarta.apache.org Received: (qmail 54225 invoked by uid 99); 2 Mar 2005 05:15:10 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Tue, 01 Mar 2005 21:15:10 -0800 Received: (qmail 50526 invoked by uid 1929); 2 Mar 2005 05:15:09 -0000 Date: 2 Mar 2005 05:15:09 -0000 Message-ID: <20050302051509.50525.qmail@minotaur.apache.org> From: jcarman@apache.org To: jakarta-hivemind-cvs@apache.org Subject: cvs commit: jakarta-hivemind/framework/src/java/org/apache/hivemind ApplicationRuntimeException.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N jcarman 2005/03/01 21:15:09 Modified: library/src/java/org/apache/hivemind/lib RemoteExceptionEvent.java framework/src/java/org/apache/hivemind/internal/ser ServiceToken.java framework/src/java/org/apache/hivemind ApplicationRuntimeException.java Log: Added default serialVersionUID to test classes to clear warnings in Eclipse. Revision Changes Path 1.4 +1 -0 jakarta-hivemind/library/src/java/org/apache/hivemind/lib/RemoteExceptionEvent.java Index: RemoteExceptionEvent.java =================================================================== RCS file: /home/cvs/jakarta-hivemind/library/src/java/org/apache/hivemind/lib/RemoteExceptionEvent.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- RemoteExceptionEvent.java 5 Jan 2005 18:03:37 -0000 1.3 +++ RemoteExceptionEvent.java 2 Mar 2005 05:15:08 -0000 1.4 @@ -23,6 +23,7 @@ */ public class RemoteExceptionEvent extends EventObject { + private static final long serialVersionUID = 1L; private Throwable _exception; public RemoteExceptionEvent(Object source, Throwable exception) 1.3 +1 -0 jakarta-hivemind/framework/src/java/org/apache/hivemind/internal/ser/ServiceToken.java Index: ServiceToken.java =================================================================== RCS file: /home/cvs/jakarta-hivemind/framework/src/java/org/apache/hivemind/internal/ser/ServiceToken.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ServiceToken.java 6 Jan 2005 01:45:13 -0000 1.2 +++ ServiceToken.java 2 Mar 2005 05:15:08 -0000 1.3 @@ -31,6 +31,7 @@ */ public class ServiceToken implements Externalizable { + private static final long serialVersionUID = 1L; private String _serviceId; // Needed for Externalizable. 1.7 +2 -0 jakarta-hivemind/framework/src/java/org/apache/hivemind/ApplicationRuntimeException.java Index: ApplicationRuntimeException.java =================================================================== RCS file: /home/cvs/jakarta-hivemind/framework/src/java/org/apache/hivemind/ApplicationRuntimeException.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- ApplicationRuntimeException.java 19 Feb 2005 02:40:54 -0000 1.6 +++ ApplicationRuntimeException.java 2 Mar 2005 05:15:09 -0000 1.7 @@ -25,6 +25,8 @@ public class ApplicationRuntimeException extends RuntimeException implements Locatable { + private static final long serialVersionUID = 1L; + private Throwable _rootCause; private transient Location _location; --------------------------------------------------------------------- To unsubscribe, e-mail: hivemind-cvs-unsubscribe@jakarta.apache.org For additional commands, e-mail: hivemind-cvs-help@jakarta.apache.org