KickJava   Java API By Example, From Geeks To Geeks.

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


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 import java.util.Collection JavaDoc;
20
21
22
23 import javax.management.ObjectName JavaDoc;
24
25
26
27 /**
28
29  * @author letiembl
30
31  * @created 13 juin 2002
32
33  * @version $Revision: 1.6 $
34
35  * @todo Javadoc to complete
36
37  */

38
39 public interface NotificationService extends Serializable JavaDoc
40
41 {
42
43    /**
44
45     * Adds a feature to the ObjectName attribute of the NotificationService object
46
47     *
48
49     * @param object The feature to be added to the ObjectName attribute
50
51     * @paramobject The feature to be added to the ObjectName attribute
52
53     * @paramobject The feature to be added to the ObjectName attribute
54
55     * @paramobject The feature to be added to the ObjectName attribute
56
57     */

58
59    public void addObjectName(ObjectName JavaDoc object);
60
61
62
63
64
65    /**
66
67     * Description of the Method
68
69     *
70
71     * @param object Description of the Parameter
72
73     * @paramobject Description of the Parameter
74
75     * @paramobject Description of the Parameter
76
77     * @paramobject Description of the Parameter
78
79     */

80
81    public void removeObjectName(ObjectName JavaDoc object);
82
83
84
85
86
87    /**
88
89     * Description of the Method
90
91     *
92
93     * @param object Description of the Parameter
94
95     * @return Description of the Return Value
96
97     * @paramobject Description of the Parameter
98
99     * @paramobject Description of the Parameter
100
101     * @paramobject Description of the Parameter
102
103     */

104
105    public boolean hasObjectName(ObjectName JavaDoc object);
106
107
108
109
110
111    /**
112
113     * Description of the Method
114
115     *
116
117     * @return Description of the Return Value
118
119     */

120
121    public Collection JavaDoc listAll();
122
123
124
125
126
127    /** Description of the Method */
128
129    public void clearAll();
130
131 }
132
133
Popular Tags