# Generated from java by J2P
from __future__ import annotations
from abc import ABC
from uri.uri import URI


class Reference(ABC):
 '''
 A reference is a URI to a Connectable object.
 

 '''
 
 def getURI(self) -> URI:
  '''
  @return URI address to which a connection can be made with the real
          object.

  '''
  pass
 
 def __init__(self):
  super().__init__()
