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

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

Multiple learns with repeated tournament, maven use https.

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.