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

Last change on this file since 52 was 52, checked in by ruud, 14 months ago

Fixed small issues in domaineditor.

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.