/**
   * Access the URL which can be used to access the referenced resource.
   *
   * @return The URL which can be used to access the referenced resource.
   */
  public String getUrl() {
    String url = null;

    if (m_service != null) {
      url = m_service.getEntityUrl(this);
    }

    return url;
  }