KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > ubik > rmi > naming > remote > RemoteContext


1 package org.sapia.ubik.rmi.naming.remote;
2
3 import java.rmi.Remote JavaDoc;
4
5 import javax.naming.Context JavaDoc;
6
7
8 /**
9  * @author Yanick Duchesne
10  *
11  * <dl>
12  * <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>
13  * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the
14  * <a HREF="http://www.sapia-oss.org/license.html">license page</a> at the Sapia OSS web site</dd></dt>
15  * </dl>
16  */

17 public interface RemoteContext extends Remote JavaDoc, Context JavaDoc {
18   public DomainInfo getDomainInfo();
19 }
20
Popular Tags