/**
  * (non-PHPdoc)
  * @see svnadmin\core\interfaces.IPathsViewProvider::getGroupsOfPath()
  */
 public function getGroupsOfPath($objAccessPath)
 {
     $ret = array();
     $groups = $this->m_authfile->groupsOfRepository($objAccessPath->getPath());
     foreach ($groups as $g) {
         $perm = $this->m_authfile->permissionsOfGroup($g, false, $objAccessPath->getPath());
         $permString = $this->resolvePermission2($perm[0][1]);
         $o = new \svnadmin\core\entities\Group();
         $o->id = $g;
         $o->name = $g;
         $o->perm = $permString;
         $ret[] = $o;
     }
     return $ret;
 }