/** {@inheritDoc} */
  public Collection getAuthzGroups(String userId) {
    Collection realms = null;

    if (m_service != null) {
      realms = m_service.getEntityAuthzGroups(this, userId);
    }

    if (realms == null) realms = new Vector();

    return realms;
  }