Interface ClusterFileStoreApis
-
@Path("/cluster") public interface ClusterFileStoreApis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description SolrJerseyResponsedeleteFile(String path, Boolean localDelete)SolrJerseyResponsedeleteFileDeprecated(String path, Boolean localDelete)Deprecated.SolrJerseyResponsefetchFile(String path, String getFrom)SolrJerseyResponsegetFile(String path)FileStoreDirectoryListingResponsegetMetadata(String path)SolrJerseyResponsesyncFile(String path)UploadToFileStoreResponseuploadFile(String filePath, List<String> sig, InputStream requestBody)UploadToFileStoreResponseuploadFileDeprecated(String filePath, List<String> sig, InputStream requestBody)Deprecated.
-
-
-
Method Detail
-
uploadFile
@PUT @Path("/filestore/files{filePath:.+}") UploadToFileStoreResponse uploadFile(@PathParam("filePath") String filePath, @QueryParam("sig") List<String> sig, InputStream requestBody)
-
deleteFile
@DELETE @Path("/filestore/files{path:.+}") SolrJerseyResponse deleteFile(@PathParam("path") String path, @QueryParam("localDelete") Boolean localDelete)
-
getMetadata
@GET @Path("/filestore/metadata{path:.+}") FileStoreDirectoryListingResponse getMetadata(@PathParam("path") String path)
-
getFile
@GET @Path("/filestore/files{filePath:.+}") SolrJerseyResponse getFile(@PathParam("filePath") String path)
-
fetchFile
@POST @Path("/filestore/commands/fetch{path:.+}") SolrJerseyResponse fetchFile(@PathParam("path") String path, @QueryParam("getFrom") String getFrom)
-
syncFile
@POST @Path("/filestore/commands/sync{path:.+}") SolrJerseyResponse syncFile(@PathParam("path") String path)
-
uploadFileDeprecated
@PUT @Path("/files{filePath:.+}") @Deprecated UploadToFileStoreResponse uploadFileDeprecated(@PathParam("filePath") String filePath, @QueryParam("sig") List<String> sig, InputStream requestBody)Deprecated.
-
deleteFileDeprecated
@DELETE @Path("/files{path:.+}") @Deprecated SolrJerseyResponse deleteFileDeprecated(@PathParam("path") String path, @QueryParam("localDelete") Boolean localDelete)Deprecated.
-
-