KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > javax > management > remote > compliance > serialization > support > OptionalRemoteInstantiator


1 /*
2  * Copyright (C) The MX4J Contributors.
3  * All rights reserved.
4  *
5  * This software is distributed under the terms of the MX4J License version 1.0.
6  * See the terms of the MX4J License in the documentation provided with this software.
7  */

8
9 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 /*
26    public ConnectionClosedException createConnectionClosedException()
27    {
28
29    }
30
31    public JMXMPConnector createJMXMPConnector()
32    {
33       return null;
34    }
35 */

36    public CloseMessage createCloseMessage()
37    {
38       return null;
39    }
40
41    public HandshakeBeginMessage createHandshakeBeginMessage()
42    {
43       return null;
44    }
45
46    public HandshakeEndMessage createHandshakeEndMessage()
47    {
48       return null;
49    }
50
51    public HandshakeErrorMessage createHandshakeErrorMessage()
52    {
53       return null;
54    }
55 /*
56    public JMXMPMessage createJMXMPMessage()
57    {
58       return null;
59    }
60 */

61    public MBeanServerRequestMessage createMBeanServerRequestMessage()
62    {
63       return null;
64    }
65
66    public MBeanServerResponseMessage createMBeanServerResponseMessage()
67    {
68       return null;
69    }
70 /*
71    public NotificationRequestMessage createNotificationRequestMessage()
72    {
73
74    }
75
76    public NotificationResponseMessage createNotificationResponseMessage()
77    {
78
79    }
80 */

81    public SASLMessage createSASLMessage()
82    {
83       return null;
84    }
85
86    public TLSMessage createTLSMessage()
87    {
88       return null;
89    }
90 }
91
Popular Tags