KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > jmx > browser > model > service > ConnectionService


1 /*
2
3  * EJTools, the Enterprise Java Tools
4
5  *
6
7  * Distributable under LGPL license.
8
9  * See terms of license at www.gnu.org.
10
11  */

12
13 package org.ejtools.jmx.browser.model.service;
14
15
16
17 import java.io.Serializable JavaDoc;
18
19
20
21 import javax.management.MBeanServer JavaDoc;
22
23
24
25 import org.ejtools.util.service.Profile;
26
27
28
29 /**
30
31  * Description of the Class
32
33  *
34
35  * @author letiemble
36
37  * @created 13 décembre 2001
38
39  * @version $Revision: 1.6 $
40
41  * @todo Javadoc to complete
42
43  */

44
45 public interface ConnectionService extends Serializable JavaDoc
46
47 {
48
49    /**
50
51     * Gets the mBeanServer attribute of the ConnectionService object
52
53     *
54
55     * @return The mBeanServer value
56
57     */

58
59    public MBeanServer JavaDoc getMBeanServer();
60
61
62
63
64
65    /**
66
67     * Gets the connected attribute of the ConnectionService object
68
69     *
70
71     * @return The connected value
72
73     */

74
75    public boolean isConnected();
76
77
78
79
80
81    /**
82
83     * Description of the Method
84
85     *
86
87     * @param profile Description of the Parameter
88
89     */

90
91    public void connect(Profile profile);
92
93
94
95
96
97    /** Description of the Method */
98
99    public void disconnect();
100
101 }
102
103
104
105
Popular Tags