/**
  * Update a list of Urltyp entities
  */
 public function updateListAction()
 {
     if ($this->request->hasArgument('data')) {
         $urltyplist = $this->request->getArgument('data');
     }
     if (empty($urltyplist)) {
         $this->throwStatus(400, 'Required data arguemnts not provided', null);
     }
     foreach ($urltyplist as $uuid => $urltyp) {
         $urltypObj = $this->urltypRepository->findByIdentifier($uuid);
         $urltypObj->setName($urltyp['name']);
         $this->urltypRepository->update($urltypObj);
     }
     $this->persistenceManager->persistAll();
     $this->throwStatus(200, null, null);
 }