/**
  * (non-PHPdoc)
  * @see svnadmin\core\interfaces.IPathsEditProvider::removeUserFromAllAccessPaths()
  */
 public function removeUserFromAllAccessPaths($objUser)
 {
     $paths = $this->m_authfile->repositoryPathsOfUser($objUser->name);
     for ($i = 0; $i < count($paths); $i++) {
         $this->m_authfile->removeUserFromRepository($objUser->name, $paths[$i]);
     }
     return true;
 }