/**
  * @param integer $id
  * @param int $priority
  * @return bool
  */
 public function markDocumentForNoIndexById($id, $priority = Document::INDEX_PRIORITY_HIGH)
 {
     $document = $this->documentRepository->getById($id);
     return $this->markDocumentForNoIndex($document, $priority);
 }