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