Esempio n. 1
0
 /**
  * Delete this Document for this indexName
  *
  * @return
  * @throws Exception
  */
 public DeleteResponse delete(String indexName) {
   return IndexService.delete(getIndexPath(indexName), id);
 }
Esempio n. 2
0
 /**
  * Delete this Document
  *
  * @return
  * @throws Exception
  */
 public DeleteResponse delete() {
   return IndexService.delete(getIndexPath(), id);
 }