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