alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Java example source code file (EventContext.java)

This example Java source code file (EventContext.java) is included in the alvinalexander.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Learn more about this Java project at its project page.

Java - Java tags/keywords

eventcontext, naming, namingexception, naminglistener, object_scope, onelevel_scope, subtree_scope

The EventContext.java Java example source code

/*
 * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

package javax.naming.event;

import javax.naming.Name;
import javax.naming.Context;
import javax.naming.NamingException;


/**
 * Contains methods for registering/deregistering listeners to be notified of
 * events fired when objects named in a context changes.
 *
 *<h1>Target
 * The name parameter in the <tt>addNamingListener() methods is referred
 * to as the <em>target. The target, along with the scope, identify
 * the object(s) that the listener is interested in.
 * It is possible to register interest in a target that does not exist, but
 * there might be limitations in the extent to which this can be
 * supported by the service provider and underlying protocol/service.
 *<p>
 * If a service only supports registration for existing
 * targets, an attempt to register for a nonexistent target
 * results in a <tt>NameNotFoundException being thrown as early as possible,
 * preferably at the time <tt>addNamingListener() is called, or if that is
 * not possible, the listener will receive the exception through the
 * <tt>NamingExceptionEvent.
 *<p>
 * Also, for service providers that only support registration for existing
 * targets, when the target that a listener has registered for is
 * subsequently removed from the namespace, the listener is notified
 * via a <tt>NamingExceptionEvent (containing a
 *<tt>NameNotFoundException).
 *<p>
 * An application can use the method <tt>targetMustExist() to check
 * whether a <tt>EventContext supports registration
 * of nonexistent targets.
 *
 *<h1>Event Source
 * The <tt>EventContext instance on which you invoke the
 * registration methods is the <em>event source of the events that are
 * (potentially) generated.
 * The source is <em>not necessarily the object named by the target.
 * Only when the target is the empty name is the object named by the target
 * the source.
 * In other words, the target,
 * along with the scope parameter, are used to identify
 * the object(s) that the listener is interested in, but the event source
 * is the <tt>EventContext instance with which the listener
 * has registered.
 *<p>
 * For example, suppose a listener makes the following registration:
 *<blockquote>
 *      NamespaceChangeListener listener = ...;
 *      src.addNamingListener("x", SUBTREE_SCOPE, listener);
 *</pre>
 * When an object named "x/y" is subsequently deleted, the corresponding
 * <tt>NamingEvent (evt)  must contain:
 *<blockquote>
 *      evt.getEventContext() == src
 *      evt.getOldBinding().getName().equals("x/y")
 *</pre>
 *<p>
 * Furthermore, listener registration/deregistration is with
 * the <tt>EventContext
 * <em>instance, and not with the corresponding object in the namespace.
 * If the program intends at some point to remove a listener, then it needs to
 * keep a reference to the <tt>EventContext instance on
 * which it invoked <tt>addNamingListener() (just as
 * it needs to keep a reference to the listener in order to remove it
 * later). It cannot expect to do a <tt>lookup() and get another instance of
 * a <tt>EventContext on which to perform the deregistration.
 *<h1>Lifetime of Registration
 * A registered listener becomes deregistered when:
 *<ul>
 *<li>It is removed using removeNamingListener().
 *<li>An exception is thrown while collecting information about the events.
 *  That is, when the listener receives a <tt>NamingExceptionEvent.
 *<li>Context.close() is invoked on the EventContext
 * instance with which it has registered.
 </ul>
 * Until that point, a <tt>EventContext instance that has outstanding
 * listeners will continue to exist and be maintained by the service provider.
 *
 *<h1>Listener Implementations
 * The registration/deregistration methods accept an instance of
 * <tt>NamingListener. There are subinterfaces of NamingListener
 * for different of event types of <tt>NamingEvent.
 * For example, the <tt>ObjectChangeListener
 * interface is for the <tt>NamingEvent.OBJECT_CHANGED event type.
 * To register interest in multiple event types, the listener implementation
 * should implement multiple <tt>NamingListener subinterfaces and use a
 * single invocation of <tt>addNamingListener().
 * In addition to reducing the number of method calls and possibly the code size
 * of the listeners, this allows some service providers to optimize the
 * registration.
 *
 *<h1>Threading Issues
 *
 * Like <tt>Context instances in general, instances of
 * <tt>EventContext are not guaranteed to be thread-safe.
 * Care must be taken when multiple threads are accessing the same
 * <tt>EventContext concurrently.
 * See the
 * <a href=package-summary.html#THREADING>package description
 * for more information on threading issues.
 *
 * @author Rosanna Lee
 * @author Scott Seligman
 * @since 1.3
 */

public interface EventContext extends Context {
    /**
     * Constant for expressing interest in events concerning the object named
     * by the target.
     *<p>
     * The value of this constant is <tt>0.
     */
    public final static int OBJECT_SCOPE = 0;

    /**
     * Constant for expressing interest in events concerning objects
     * in the context named by the target,
     * excluding the context named by the target.
     *<p>
     * The value of this constant is <tt>1.
     */
    public final static int ONELEVEL_SCOPE = 1;

    /**
     * Constant for expressing interest in events concerning objects
     * in the subtree of the object named by the target, including the object
     * named by the target.
     *<p>
     * The value of this constant is <tt>2.
     */
    public final static int SUBTREE_SCOPE = 2;


    /**
     * Adds a listener for receiving naming events fired
     * when the object(s) identified by a target and scope changes.
     *
     * The event source of those events is this context. See the
     * class description for a discussion on event source and target.
     * See the descriptions of the constants <tt>OBJECT_SCOPE,
     * <tt>ONELEVEL_SCOPE, and SUBTREE_SCOPE to see how
     * <tt>scope affects the registration.
     *<p>
     * <tt>target needs to name a context only when scope is
     * <tt>ONELEVEL_SCOPE.
     * <tt>target may name a non-context if scope is either
     * <tt>OBJECT_SCOPE or SUBTREE_SCOPE.  Using
     * <tt>SUBTREE_SCOPE for a non-context might be useful,
     * for example, if the caller does not know in advance whether <tt>target
     * is a context and just wants to register interest in the (possibly
     * degenerate subtree) rooted at <tt>target.
     *<p>
     * When the listener is notified of an event, the listener may
     * in invoked in a thread other than the one in which
     * <tt>addNamingListener() is executed.
     * Care must be taken when multiple threads are accessing the same
     * <tt>EventContext concurrently.
     * See the
     * <a href=package-summary.html#THREADING>package description
     * for more information on threading issues.
     *
     * @param target A nonnull name to be resolved relative to this context.
     * @param scope One of <tt>OBJECT_SCOPE, ONELEVEL_SCOPE, or
     * <tt>SUBTREE_SCOPE.
     * @param l  The nonnull listener.
     * @exception NamingException If a problem was encountered while
     * adding the listener.
     * @see #removeNamingListener
     */
    void addNamingListener(Name target, int scope, NamingListener l)
        throws NamingException;

    /**
     * Adds a listener for receiving naming events fired
     * when the object named by the string target name and scope changes.
     *
     * See the overload that accepts a <tt>Name for details.
     *
     * @param target The nonnull string name of the object resolved relative
     * to this context.
     * @param scope One of <tt>OBJECT_SCOPE, ONELEVEL_SCOPE, or
     * <tt>SUBTREE_SCOPE.
     * @param l  The nonnull listener.
     * @exception NamingException If a problem was encountered while
     * adding the listener.
     * @see #removeNamingListener
     */
    void addNamingListener(String target, int scope, NamingListener l)
        throws NamingException;

    /**
     * Removes a listener from receiving naming events fired
     * by this <tt>EventContext.
     * The listener may have registered more than once with this
     * <tt>EventContext, perhaps with different target/scope arguments.
     * After this method is invoked, the listener will no longer
     * receive events with this <tt>EventContext instance
     * as the event source (except for those events already in the process of
     * being dispatched).
     * If the listener was not, or is no longer, registered with
     * this <tt>EventContext instance, this method does not do anything.
     *
     * @param l  The nonnull listener.
     * @exception NamingException If a problem was encountered while
     * removing the listener.
     * @see #addNamingListener
     */
    void removeNamingListener(NamingListener l) throws NamingException;

    /**
     * Determines whether a listener can register interest in a target
     * that does not exist.
     *
     * @return true if the target must exist; false if the target need not exist.
     * @exception NamingException If the context's behavior in this regard cannot
     * be determined.
     */
    boolean targetMustExist() throws NamingException;
}

Other Java examples (source code examples)

Here is a short list of links related to this Java EventContext.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.