/** Create the live properties for the azGroup. */
  protected void addLiveProperties(BaseAuthzGroup azGroup) {
    String current = sessionManager().getCurrentSessionUserId();

    azGroup.m_createdUserId = current;
    azGroup.m_lastModifiedUserId = current;

    Time now = timeService().newTime();
    azGroup.m_createdTime = now;
    azGroup.m_lastModifiedTime = (Time) now.clone();
  }