/** @return a description of the resource referenced. */
  public String getDescription() {
    String rv = "unknown";

    if (m_service != null) {
      rv = m_service.getEntityDescription(this);

      if (rv == null) {
        rv = m_service.getLabel() + " " + m_reference;
      }
    }

    return rv;
  }