Interface INoteIndexMgmt


@Path("/mgmt/notes") public interface INoteIndexMgmt
Notes indexing API
  • Method Summary

    Modifier and Type
    Method
    Description
    reindex(String noteContainerUid)
    Reindex a Note container
    Reindex all Note containers
  • Method Details

    • reindexAll

      @POST @Path("_reindex") TaskRef reindexAll() throws ServerFault
      Reindex all Note containers
      Returns:
      TaskRef which can be used to track this asynchronous operation
      Throws:
      ServerFault
    • reindex

      @POST @Path("{containerUid}/_reindex") TaskRef reindex(@PathParam("containerUid") String noteContainerUid) throws ServerFault
      Reindex a Note container
      Parameters:
      noteContainerUid - Unique Note Container ID
      Returns:
      TaskRef which can be used to track this asynchronous operation
      Throws:
      ServerFault