/**
  * Delete an Urltyp entity
  */
 public function deleteAction()
 {
     if ($this->request->hasArgument('uUID')) {
         $uuid = $this->request->getArgument('uUID');
     }
     if (empty($uuid)) {
         $this->throwStatus(400, 'Required uUID not provided', null);
     }
     $urls = count($this->urlRepository->findByUrltyp($uuid));
     if ($urls == 0) {
         $urltypObj = $this->urltypRepository->findByIdentifier($uuid);
         if (!is_object($urltypObj)) {
             $this->throwStatus(400, 'Entity Urltyp not available', null);
         }
         $this->urltypRepository->remove($urltypObj);
         $this->throwStatus(200, null, null);
     } else {
         $this->throwStatus(400, 'Due to dependencies Urltyp entity could not be deleted', null);
     }
 }