package geniusweb.references; import java.net.URI; /** * A reference is a URI to a Connectable object. * */ public interface Reference { /** * @return URI address to which a connection can be made with the real * object. */ URI getURI(); }