Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/classes/javax/naming/event/EventContext.java
38830 views
1
/*
2
* Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
package javax.naming.event;
27
28
import javax.naming.Name;
29
import javax.naming.Context;
30
import javax.naming.NamingException;
31
32
33
/**
34
* Contains methods for registering/deregistering listeners to be notified of
35
* events fired when objects named in a context changes.
36
*
37
*<h1>Target</h1>
38
* The name parameter in the <tt>addNamingListener()</tt> methods is referred
39
* to as the <em>target</em>. The target, along with the scope, identify
40
* the object(s) that the listener is interested in.
41
* It is possible to register interest in a target that does not exist, but
42
* there might be limitations in the extent to which this can be
43
* supported by the service provider and underlying protocol/service.
44
*<p>
45
* If a service only supports registration for existing
46
* targets, an attempt to register for a nonexistent target
47
* results in a <tt>NameNotFoundException</tt> being thrown as early as possible,
48
* preferably at the time <tt>addNamingListener()</tt> is called, or if that is
49
* not possible, the listener will receive the exception through the
50
* <tt>NamingExceptionEvent</tt>.
51
*<p>
52
* Also, for service providers that only support registration for existing
53
* targets, when the target that a listener has registered for is
54
* subsequently removed from the namespace, the listener is notified
55
* via a <tt>NamingExceptionEvent</tt> (containing a
56
*<tt>NameNotFoundException</tt>).
57
*<p>
58
* An application can use the method <tt>targetMustExist()</tt> to check
59
* whether a <tt>EventContext</tt> supports registration
60
* of nonexistent targets.
61
*
62
*<h1>Event Source</h1>
63
* The <tt>EventContext</tt> instance on which you invoke the
64
* registration methods is the <em>event source</em> of the events that are
65
* (potentially) generated.
66
* The source is <em>not necessarily</em> the object named by the target.
67
* Only when the target is the empty name is the object named by the target
68
* the source.
69
* In other words, the target,
70
* along with the scope parameter, are used to identify
71
* the object(s) that the listener is interested in, but the event source
72
* is the <tt>EventContext</tt> instance with which the listener
73
* has registered.
74
*<p>
75
* For example, suppose a listener makes the following registration:
76
*<blockquote><pre>
77
* NamespaceChangeListener listener = ...;
78
* src.addNamingListener("x", SUBTREE_SCOPE, listener);
79
*</pre></blockquote>
80
* When an object named "x/y" is subsequently deleted, the corresponding
81
* <tt>NamingEvent</tt> (<tt>evt</tt>) must contain:
82
*<blockquote><pre>
83
* evt.getEventContext() == src
84
* evt.getOldBinding().getName().equals("x/y")
85
*</pre></blockquote>
86
*<p>
87
* Furthermore, listener registration/deregistration is with
88
* the <tt>EventContext</tt>
89
* <em>instance</em>, and not with the corresponding object in the namespace.
90
* If the program intends at some point to remove a listener, then it needs to
91
* keep a reference to the <tt>EventContext</tt> instance on
92
* which it invoked <tt>addNamingListener()</tt> (just as
93
* it needs to keep a reference to the listener in order to remove it
94
* later). It cannot expect to do a <tt>lookup()</tt> and get another instance of
95
* a <tt>EventContext</tt> on which to perform the deregistration.
96
*<h1>Lifetime of Registration</h1>
97
* A registered listener becomes deregistered when:
98
*<ul>
99
*<li>It is removed using <tt>removeNamingListener()</tt>.
100
*<li>An exception is thrown while collecting information about the events.
101
* That is, when the listener receives a <tt>NamingExceptionEvent</tt>.
102
*<li><tt>Context.close()</tt> is invoked on the <tt>EventContext</tt>
103
* instance with which it has registered.
104
</ul>
105
* Until that point, a <tt>EventContext</tt> instance that has outstanding
106
* listeners will continue to exist and be maintained by the service provider.
107
*
108
*<h1>Listener Implementations</h1>
109
* The registration/deregistration methods accept an instance of
110
* <tt>NamingListener</tt>. There are subinterfaces of <tt>NamingListener</tt>
111
* for different of event types of <tt>NamingEvent</tt>.
112
* For example, the <tt>ObjectChangeListener</tt>
113
* interface is for the <tt>NamingEvent.OBJECT_CHANGED</tt> event type.
114
* To register interest in multiple event types, the listener implementation
115
* should implement multiple <tt>NamingListener</tt> subinterfaces and use a
116
* single invocation of <tt>addNamingListener()</tt>.
117
* In addition to reducing the number of method calls and possibly the code size
118
* of the listeners, this allows some service providers to optimize the
119
* registration.
120
*
121
*<h1>Threading Issues</h1>
122
*
123
* Like <tt>Context</tt> instances in general, instances of
124
* <tt>EventContext</tt> are not guaranteed to be thread-safe.
125
* Care must be taken when multiple threads are accessing the same
126
* <tt>EventContext</tt> concurrently.
127
* See the
128
* <a href=package-summary.html#THREADING>package description</a>
129
* for more information on threading issues.
130
*
131
* @author Rosanna Lee
132
* @author Scott Seligman
133
* @since 1.3
134
*/
135
136
public interface EventContext extends Context {
137
/**
138
* Constant for expressing interest in events concerning the object named
139
* by the target.
140
*<p>
141
* The value of this constant is <tt>0</tt>.
142
*/
143
public final static int OBJECT_SCOPE = 0;
144
145
/**
146
* Constant for expressing interest in events concerning objects
147
* in the context named by the target,
148
* excluding the context named by the target.
149
*<p>
150
* The value of this constant is <tt>1</tt>.
151
*/
152
public final static int ONELEVEL_SCOPE = 1;
153
154
/**
155
* Constant for expressing interest in events concerning objects
156
* in the subtree of the object named by the target, including the object
157
* named by the target.
158
*<p>
159
* The value of this constant is <tt>2</tt>.
160
*/
161
public final static int SUBTREE_SCOPE = 2;
162
163
164
/**
165
* Adds a listener for receiving naming events fired
166
* when the object(s) identified by a target and scope changes.
167
*
168
* The event source of those events is this context. See the
169
* class description for a discussion on event source and target.
170
* See the descriptions of the constants <tt>OBJECT_SCOPE</tt>,
171
* <tt>ONELEVEL_SCOPE</tt>, and <tt>SUBTREE_SCOPE</tt> to see how
172
* <tt>scope</tt> affects the registration.
173
*<p>
174
* <tt>target</tt> needs to name a context only when <tt>scope</tt> is
175
* <tt>ONELEVEL_SCOPE</tt>.
176
* <tt>target</tt> may name a non-context if <tt>scope</tt> is either
177
* <tt>OBJECT_SCOPE</tt> or <tt>SUBTREE_SCOPE</tt>. Using
178
* <tt>SUBTREE_SCOPE</tt> for a non-context might be useful,
179
* for example, if the caller does not know in advance whether <tt>target</tt>
180
* is a context and just wants to register interest in the (possibly
181
* degenerate subtree) rooted at <tt>target</tt>.
182
*<p>
183
* When the listener is notified of an event, the listener may
184
* in invoked in a thread other than the one in which
185
* <tt>addNamingListener()</tt> is executed.
186
* Care must be taken when multiple threads are accessing the same
187
* <tt>EventContext</tt> concurrently.
188
* See the
189
* <a href=package-summary.html#THREADING>package description</a>
190
* for more information on threading issues.
191
*
192
* @param target A nonnull name to be resolved relative to this context.
193
* @param scope One of <tt>OBJECT_SCOPE</tt>, <tt>ONELEVEL_SCOPE</tt>, or
194
* <tt>SUBTREE_SCOPE</tt>.
195
* @param l The nonnull listener.
196
* @exception NamingException If a problem was encountered while
197
* adding the listener.
198
* @see #removeNamingListener
199
*/
200
void addNamingListener(Name target, int scope, NamingListener l)
201
throws NamingException;
202
203
/**
204
* Adds a listener for receiving naming events fired
205
* when the object named by the string target name and scope changes.
206
*
207
* See the overload that accepts a <tt>Name</tt> for details.
208
*
209
* @param target The nonnull string name of the object resolved relative
210
* to this context.
211
* @param scope One of <tt>OBJECT_SCOPE</tt>, <tt>ONELEVEL_SCOPE</tt>, or
212
* <tt>SUBTREE_SCOPE</tt>.
213
* @param l The nonnull listener.
214
* @exception NamingException If a problem was encountered while
215
* adding the listener.
216
* @see #removeNamingListener
217
*/
218
void addNamingListener(String target, int scope, NamingListener l)
219
throws NamingException;
220
221
/**
222
* Removes a listener from receiving naming events fired
223
* by this <tt>EventContext</tt>.
224
* The listener may have registered more than once with this
225
* <tt>EventContext</tt>, perhaps with different target/scope arguments.
226
* After this method is invoked, the listener will no longer
227
* receive events with this <tt>EventContext</tt> instance
228
* as the event source (except for those events already in the process of
229
* being dispatched).
230
* If the listener was not, or is no longer, registered with
231
* this <tt>EventContext</tt> instance, this method does not do anything.
232
*
233
* @param l The nonnull listener.
234
* @exception NamingException If a problem was encountered while
235
* removing the listener.
236
* @see #addNamingListener
237
*/
238
void removeNamingListener(NamingListener l) throws NamingException;
239
240
/**
241
* Determines whether a listener can register interest in a target
242
* that does not exist.
243
*
244
* @return true if the target must exist; false if the target need not exist.
245
* @exception NamingException If the context's behavior in this regard cannot
246
* be determined.
247
*/
248
boolean targetMustExist() throws NamingException;
249
}
250
251