source: branches/supervisor/src/main/java/omq/Remote.java @ 106

Last change on this file since 106 was 105, checked in by stoda, 11 years ago

UID changed to reference
TODO: add UID

File size: 607 bytes
RevLine 
[44]1package omq;
2
3import java.io.Serializable;
4
5/**
6 *
[82]7 * The Remote interface serves to identify interfaces whose methods may be
8 * invoked from a non-local virtual machine. Any object that is a remote object
9 * must directly or indirectly implement this interface. Only those methods
10 * specified in a "remote interface", an interface that extends omq.Remote are
11 * available remotely.
12 *
[44]13 * @author Sergi Toda <sergi.toda@estudiants.urv.cat>
14 *
15 */
16public interface Remote extends Serializable {
17
18        /**
[105]19         * Returns the reference of a RemoteObject
[44]20         *
[105]21         * @return reference
[44]22         */
23        public String getRef();
24}
Note: See TracBrowser for help on using the repository browser.