source: references/src/main/java/geniusweb/references/Reference.java@ 41

Last change on this file since 41 was 41, checked in by bart, 3 years ago

Reduced memory need of websockets.

File size: 262 bytes
Line 
1package geniusweb.references;
2
3import java.net.URI;
4
5/**
6 * A reference is a URI to a Connectable object.
7 *
8 */
9public interface Reference {
10 /**
11 * @return URI address to which a connection can be made with the real
12 * object.
13 */
14 URI getURI();
15}
Note: See TracBrowser for help on using the repository browser.