| CODENOTIFIER | HelpYou are not signed inSign in |
Project: ProActive
Revision: 10090
Author: cdalmass
Date: 05 Sep 2008 06:42:42
Changes:fix migration test
PROACTIVE-463
| ... | ...@@ -41,7 +41,7 @@ | |
| 41 | 41 | NotificationListener { |
| 42 | 42 | private static final Logger logger = ProActiveLogger.getLogger(Loggers.COMPONENTS_CONTROLLERS); |
| 43 | 43 | |
| 44 | private JMXNotificationManager jmxNotificationManager; | |
| 44 | private transient JMXNotificationManager jmxNotificationManager; | |
| 45 | 45 | |
| 46 | 46 | private boolean started; |
| 47 | 47 | |
| ... | ...@@ -259,4 +259,12 @@ | |
| 259 | 259 | handleNotification(iterator.next(), handback); |
| 260 | 260 | } |
| 261 | 261 | } |
| 262 | ||
| 263 | /* | |
| 264 | * ---------- PRIVATE METHODS FOR SERIALIZATION ---------- | |
| 265 | */ | |
| 266 | private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException { | |
| 267 | in.defaultReadObject(); | |
| 268 | jmxNotificationManager = JMXNotificationManager.getInstance(); | |
| 269 | } | |
| 262 | 270 | } |