1. /*
  2. * @(#)Remote.java 1.10 00/02/02
  3. *
  4. * Copyright 1996-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package java.rmi;
  11. /**
  12. * The <code>Remote</code> interface serves to identify interfaces whose
  13. * methods may be invoked from a non-local virtual machine. Any object that
  14. * is a remote object must directly or indirectly implement this interface.
  15. * Only those methods specified in a "remote interface", an interface that
  16. * extends <code>java.rmi.Remote</code> are available remotely.
  17. *
  18. * <p>Implementation classes can implement any number of remote interfaces and
  19. * can extend other remote implementation classes. RMI provides some
  20. * convenience classes that remote object implementations can extend which
  21. * facilitate remote object creation. These classes are
  22. * <code>java.rmi.server.UnicastRemoteObject</code> and
  23. * <code>java.rmi.activation.Activatable</code>.
  24. *
  25. * <p>For complete details on RMI, see the <a
  26. href=../../../guide/rmi/spec/rmiTOC.doc.html>RMI Specification</a> which describes the RMI API and system</a>.
  27. *
  28. * @version 1.10, 02/02/00
  29. * @since JDK1.1
  30. * @author Ann Wollrath
  31. * @see java.rmi.server.UnicastRemoteObject
  32. * @see java.rmi.activation.Activatable
  33. */
  34. public interface Remote {}