01: /*
02: * Copyright (C) The MX4J Contributors.
03: * All rights reserved.
04: *
05: * This software is distributed under the terms of the MX4J License version 1.0.
06: * See the terms of the MX4J License in the documentation provided with this software.
07: */
08:
09: package test.mx4j.tools.remote.hessian;
10:
11: import java.net.MalformedURLException;
12: import java.util.HashMap;
13: import java.util.Map;
14: import javax.management.remote.JMXServiceURL;
15:
16: import test.javax.management.remote.JMXNotificationsTestCase;
17:
18: /**
19: * @version $Revision: 1.4 $
20: */
21: public class HessianNotificationsTest extends JMXNotificationsTestCase {
22: public HessianNotificationsTest(String name) {
23: super (name);
24: }
25:
26: public JMXServiceURL createJMXConnectorServerAddress()
27: throws MalformedURLException {
28: return new JMXServiceURL("hessian", null, 8080, "/hessian");
29: }
30:
31: public Map getEnvironment() {
32: return new HashMap();
33: }
34:
35: public void testNonSerializableNotifications() throws Exception {
36: // Burlap protocol does not see if the Object does not implement Serializable,
37: // it tries anyway to serialize it
38: }
39: }
|