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