Interface ClusterPropertyApis
-
@Path("/cluster/properties") public interface ClusterPropertyApis
Definitions for v2 JAX-RS cluster properties APIs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SolrJerseyResponse
createOrUpdateClusterProperty(String propertyName, SetClusterPropertyRequestBody requestBody)
SolrJerseyResponse
createOrUpdateNestedClusterProperty(Map<String,Object> propertyValuesByName)
SolrJerseyResponse
deleteClusterProperty(String propertyName)
SolrJerseyResponse
getClusterProperty(String propertyName)
ListClusterPropertiesResponse
listClusterProperties()
-
-
-
Method Detail
-
listClusterProperties
@GET ListClusterPropertiesResponse listClusterProperties()
-
getClusterProperty
@GET @Path("/{propertyName}") SolrJerseyResponse getClusterProperty(@PathParam("propertyName") String propertyName)
-
createOrUpdateClusterProperty
@PUT @Path("/{propertyName}") SolrJerseyResponse createOrUpdateClusterProperty(@PathParam("propertyName") String propertyName, SetClusterPropertyRequestBody requestBody) throws Exception
- Throws:
Exception
-
createOrUpdateNestedClusterProperty
@PUT SolrJerseyResponse createOrUpdateNestedClusterProperty(Map<String,Object> propertyValuesByName) throws Exception
- Throws:
Exception
-
deleteClusterProperty
@DELETE @Path("/{propertyName}") SolrJerseyResponse deleteClusterProperty(@PathParam("propertyName") String propertyName)
-
-