You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ad...@apache.org on 2004/01/28 06:42:56 UTC

cvs commit: incubator-geronimo/modules/remoting/src/java/org/apache/geronimo/remoting/jmx NotificationRemoterInterceptor.java

adc         2004/01/27 21:42:56

  Modified:    modules/remoting/src/java/org/apache/geronimo/remoting/jmx
                        NotificationRemoterInterceptor.java
  Log:
  This needs to ber serializable
  
  Revision  Changes    Path
  1.4       +3 -2      incubator-geronimo/modules/remoting/src/java/org/apache/geronimo/remoting/jmx/NotificationRemoterInterceptor.java
  
  Index: NotificationRemoterInterceptor.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/remoting/src/java/org/apache/geronimo/remoting/jmx/NotificationRemoterInterceptor.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- NotificationRemoterInterceptor.java	26 Nov 2003 20:54:29 -0000	1.3
  +++ NotificationRemoterInterceptor.java	28 Jan 2004 05:42:56 -0000	1.4
  @@ -55,6 +55,7 @@
    */
   package org.apache.geronimo.remoting.jmx;
   
  +import java.io.Serializable;
   import java.lang.reflect.Method;
   
   import javax.management.NotificationFilter;
  @@ -70,7 +71,7 @@
   /**
    * @version $Revision$ $Date$
    */
  -public class NotificationRemoterInterceptor implements Interceptor {
  +public class NotificationRemoterInterceptor implements Interceptor, Serializable {
       private final Interceptor next;
   
       public NotificationRemoterInterceptor(Interceptor next) {