KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > ubik > rmi > naming > remote > discovery > JndiDiscoListener


1 package org.sapia.ubik.rmi.naming.remote.discovery;
2
3
4 /**
5  * An instance of this interface is notified when a new JNDI server appears on the network.
6  *
7  * @see org.sapia.ubik.rmi.naming.remote.proxy.ReliableLocalContext#addJndiDiscoListener(JndiDiscoListener)
8  *
9  * @author Yanick Duchesne
10  * <dl>
11  * <dt><b>Copyright:</b><dd>Copyright &#169; 2002-2003 <a HREF="http://www.sapia-oss.org">Sapia Open Source Software</a>. All Rights Reserved.</dd></dt>
12  * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the
13  * <a HREF="http://www.sapia-oss.org/license.html">license page</a> at the Sapia OSS web site</dd></dt>
14  * </dl>
15  */

16 public interface JndiDiscoListener {
17   public void onJndiDiscovered(javax.naming.Context JavaDoc ctx);
18 }
19
Popular Tags