[jboss-cvs] JBossCache/src/org/jboss/cache/pojo/notification/event ...

Jason Thomas Greene jgreene at jboss.com
Tue Jul 10 19:10:00 EDT 2007


  User: jgreene 
  Date: 07/07/10 19:10:00

  Modified:    src/org/jboss/cache/pojo/notification/event          
                        ArrayModifiedEvent.java AttachedEvent.java
                        DetachedEvent.java Event.java
                        FieldModifiedEvent.java ListModifiedEvent.java
                        MapModifiedEvent.java SetModifiedEvent.java
                        TransactionCompletedEvent.java
                        TransactionRegisteredEvent.java
  Log:
  Fix warnings
  
  Revision  Changes    Path
  1.2       +2 -0      JBossCache/src/org/jboss/cache/pojo/notification/event/ArrayModifiedEvent.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ArrayModifiedEvent.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/pojo/notification/event/ArrayModifiedEvent.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ArrayModifiedEvent.java	29 Jun 2007 04:34:01 -0000	1.1
  +++ ArrayModifiedEvent.java	10 Jul 2007 23:09:59 -0000	1.2
  @@ -31,6 +31,8 @@
    */
   public final class ArrayModifiedEvent extends Event
   {
  +   private static final long serialVersionUID = -1981636493457934325L;
  +
      private final int index;
      private final Object value;
   
  
  
  
  1.2       +4 -2      JBossCache/src/org/jboss/cache/pojo/notification/event/AttachedEvent.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: AttachedEvent.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/pojo/notification/event/AttachedEvent.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- AttachedEvent.java	29 Jun 2007 04:34:01 -0000	1.1
  +++ AttachedEvent.java	10 Jul 2007 23:09:59 -0000	1.2
  @@ -31,6 +31,8 @@
    */
   public final class AttachedEvent extends Event
   {
  +   private static final long serialVersionUID = -1981636493457934325L;
  +
      public AttachedEvent(NotificationContext context, Object source, boolean local)
      {
         super(context, source, local);
  
  
  
  1.2       +4 -2      JBossCache/src/org/jboss/cache/pojo/notification/event/DetachedEvent.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: DetachedEvent.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/pojo/notification/event/DetachedEvent.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- DetachedEvent.java	29 Jun 2007 04:34:01 -0000	1.1
  +++ DetachedEvent.java	10 Jul 2007 23:09:59 -0000	1.2
  @@ -31,6 +31,8 @@
    */
   public final class DetachedEvent extends Event
   {
  +   private static final long serialVersionUID = -1981636493457934325L;
  +
      public DetachedEvent(NotificationContext context, Object source, boolean local)
      {
         super(context, source, local);
  
  
  
  1.2       +2 -0      JBossCache/src/org/jboss/cache/pojo/notification/event/Event.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Event.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/pojo/notification/event/Event.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- Event.java	29 Jun 2007 04:34:01 -0000	1.1
  +++ Event.java	10 Jul 2007 23:09:59 -0000	1.2
  @@ -32,6 +32,8 @@
    */
   public abstract class Event extends EventObject
   {
  +   private static final long serialVersionUID = -1981636493457934325L;
  +
      private final NotificationContext context;
      private final boolean local;
   
  
  
  
  1.2       +7 -5      JBossCache/src/org/jboss/cache/pojo/notification/event/FieldModifiedEvent.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: FieldModifiedEvent.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/pojo/notification/event/FieldModifiedEvent.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- FieldModifiedEvent.java	29 Jun 2007 04:34:01 -0000	1.1
  +++ FieldModifiedEvent.java	10 Jul 2007 23:09:59 -0000	1.2
  @@ -33,6 +33,8 @@
    */
   public final class FieldModifiedEvent extends Event
   {
  +   private static final long serialVersionUID = -1981636493457934325L;
  +
      private final Field field;
      private final Object value;
      
  
  
  
  1.2       +2 -0      JBossCache/src/org/jboss/cache/pojo/notification/event/ListModifiedEvent.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ListModifiedEvent.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/pojo/notification/event/ListModifiedEvent.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ListModifiedEvent.java	29 Jun 2007 04:34:01 -0000	1.1
  +++ ListModifiedEvent.java	10 Jul 2007 23:09:59 -0000	1.2
  @@ -33,6 +33,8 @@
    */
   public final class ListModifiedEvent extends Event
   {
  +   private static final long serialVersionUID = -1981636493457934325L;
  +
      public enum Operation {ADD, SET, REMOVE}
      private final Operation operation;
      private final int index;
  
  
  
  1.2       +11 -9     JBossCache/src/org/jboss/cache/pojo/notification/event/MapModifiedEvent.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MapModifiedEvent.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/pojo/notification/event/MapModifiedEvent.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- MapModifiedEvent.java	29 Jun 2007 04:34:01 -0000	1.1
  +++ MapModifiedEvent.java	10 Jul 2007 23:09:59 -0000	1.2
  @@ -33,6 +33,8 @@
    */
   public final class MapModifiedEvent extends Event
   {
  +   private static final long serialVersionUID = -1981636493457934325L;
  +
      public enum Operation {PUT, REMOVE}
      private final Operation operation;
      private final Object key;
  
  
  
  1.2       +2 -0      JBossCache/src/org/jboss/cache/pojo/notification/event/SetModifiedEvent.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SetModifiedEvent.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/pojo/notification/event/SetModifiedEvent.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- SetModifiedEvent.java	29 Jun 2007 04:34:01 -0000	1.1
  +++ SetModifiedEvent.java	10 Jul 2007 23:09:59 -0000	1.2
  @@ -33,6 +33,8 @@
    */
   public final class SetModifiedEvent extends Event
   {
  +   private static final long serialVersionUID = -1981636493457934325L;
  +
      public enum Operation {ADD, REMOVE}
      private final Operation operation;
      private final Object value;
  
  
  
  1.2       +2 -0      JBossCache/src/org/jboss/cache/pojo/notification/event/TransactionCompletedEvent.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TransactionCompletedEvent.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/pojo/notification/event/TransactionCompletedEvent.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- TransactionCompletedEvent.java	29 Jun 2007 04:34:01 -0000	1.1
  +++ TransactionCompletedEvent.java	10 Jul 2007 23:09:59 -0000	1.2
  @@ -33,6 +33,8 @@
    */
   public final class TransactionCompletedEvent extends Event
   {
  +   private static final long serialVersionUID = -1981636493457934325L;
  +
      private final boolean successful;
   
      public TransactionCompletedEvent(NotificationContext context, boolean successful, boolean local)
  
  
  
  1.2       +2 -0      JBossCache/src/org/jboss/cache/pojo/notification/event/TransactionRegisteredEvent.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TransactionRegisteredEvent.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/pojo/notification/event/TransactionRegisteredEvent.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- TransactionRegisteredEvent.java	29 Jun 2007 04:34:01 -0000	1.1
  +++ TransactionRegisteredEvent.java	10 Jul 2007 23:09:59 -0000	1.2
  @@ -33,6 +33,8 @@
    */
   public final class TransactionRegisteredEvent extends Event
   {
  +   private static final long serialVersionUID = -1981636493457934325L;
  +
      public TransactionRegisteredEvent(NotificationContext context, boolean local)
      {
         super(context, context.getTransaction(), local);
  
  
  



More information about the jboss-cvs-commits mailing list