Interface ClusterFileStoreApis
-
@Path("/cluster") public interface ClusterFileStoreApis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SolrJerseyResponse
deleteFile(String path, Boolean localDelete)
UploadToFileStoreResponse
uploadFile(String filePath, List<String> sig, InputStream requestBody)
-
-
-
Method Detail
-
uploadFile
@PUT @Path("/files{filePath:.+}") UploadToFileStoreResponse uploadFile(@PathParam("filePath") String filePath, @QueryParam("sig") List<String> sig, InputStream requestBody)
-
deleteFile
@DELETE @Path("/files{path:.+}") SolrJerseyResponse deleteFile(@PathParam("path") String path, @QueryParam("localDelete") Boolean localDelete)
-
-