Interface CollectionPropertyApi
-
@Path("/collections/{collName}/properties/{propName}") public interface CollectionPropertyApi
V2 API definitions for modifying collection-level properties.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SolrJerseyResponse
createOrUpdateCollectionProperty(String collName, String propName, UpdateCollectionPropertyRequestBody requestBody)
SolrJerseyResponse
deleteCollectionProperty(String collName, String propName)
-
-
-
Method Detail
-
createOrUpdateCollectionProperty
@PUT SolrJerseyResponse createOrUpdateCollectionProperty(@PathParam("collName") String collName, @PathParam("propName") String propName, UpdateCollectionPropertyRequestBody requestBody) throws Exception
- Throws:
Exception
-
deleteCollectionProperty
@DELETE SolrJerseyResponse deleteCollectionProperty(@PathParam("collName") String collName, @PathParam("propName") String propName) throws Exception
- Throws:
Exception
-
-