[jboss-remoting-commits] JBoss Remoting SVN: r4127 - remoting2/branches/2.x/src/main/org/jboss/remoting/callback.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Wed May 7 19:30:30 EDT 2008


Author: ron.sigal at jboss.com
Date: 2008-05-07 19:30:30 -0400 (Wed, 07 May 2008)
New Revision: 4127

Modified:
   remoting2/branches/2.x/src/main/org/jboss/remoting/callback/ServerInvokerCallbackHandler.java
Log:
JBREM-977: Wraps CallbackErrorHandler and CallbackStore MBean proxies.

Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/callback/ServerInvokerCallbackHandler.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/callback/ServerInvokerCallbackHandler.java	2008-05-07 23:29:45 UTC (rev 4126)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/callback/ServerInvokerCallbackHandler.java	2008-05-07 23:30:30 UTC (rev 4127)
@@ -383,6 +383,7 @@
                                                                       storeObjectName,
                                                                       SerializableStore.class,
                                                                       false);
+                  callbackStore = new CallbackStoreWrapper(callbackStore);
                }
             }
             catch(Exception ex)
@@ -460,6 +461,7 @@
                                                                       errorHandlerObjectName,
                                                                       CallbackErrorHandler.class,
                                                                       false);
+                  callbackErrorHandler = new CallbackErrorHandlerWrapper(callbackErrorHandler);
                }
             }
             catch(Exception ex)




More information about the jboss-remoting-commits mailing list