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.javax.management.remote.compliance.serialization.support;
10:
11: import javax.management.remote.message.CloseMessage;
12: import javax.management.remote.message.HandshakeBeginMessage;
13: import javax.management.remote.message.HandshakeEndMessage;
14: import javax.management.remote.message.HandshakeErrorMessage;
15: import javax.management.remote.message.MBeanServerRequestMessage;
16: import javax.management.remote.message.MBeanServerResponseMessage;
17: import javax.management.remote.message.SASLMessage;
18: import javax.management.remote.message.TLSMessage;
19:
20: /**
21: * @version $Revision: 1.5 $
22: */
23: public class OptionalRemoteInstantiator {
24: /*
25: public ConnectionClosedException createConnectionClosedException()
26: {
27:
28: }
29:
30: public JMXMPConnector createJMXMPConnector()
31: {
32: return null;
33: }
34: */
35: public CloseMessage createCloseMessage() {
36: return null;
37: }
38:
39: public HandshakeBeginMessage createHandshakeBeginMessage() {
40: return null;
41: }
42:
43: public HandshakeEndMessage createHandshakeEndMessage() {
44: return null;
45: }
46:
47: public HandshakeErrorMessage createHandshakeErrorMessage() {
48: return null;
49: }
50:
51: /*
52: public JMXMPMessage createJMXMPMessage()
53: {
54: return null;
55: }
56: */
57: public MBeanServerRequestMessage createMBeanServerRequestMessage() {
58: return null;
59: }
60:
61: public MBeanServerResponseMessage createMBeanServerResponseMessage() {
62: return null;
63: }
64:
65: /*
66: public NotificationRequestMessage createNotificationRequestMessage()
67: {
68:
69: }
70:
71: public NotificationResponseMessage createNotificationResponseMessage()
72: {
73:
74: }
75: */
76: public SASLMessage createSASLMessage() {
77: return null;
78: }
79:
80: public TLSMessage createTLSMessage() {
81: return null;
82: }
83: }
|