/**
   * Find the ResourceProperties object for this reference.
   *
   * @return A ResourcesProperties object found (or constructed) for this reference.
   */
  public ResourceProperties getProperties() {
    ResourceProperties props = null;

    if (m_service != null) {
      props = m_service.getEntityResourceProperties(this);
    }

    return props;
  }