Interface ZooKeeperReadApis
-
@Path("/cluster/zookeeper/") public interface ZooKeeperReadApis
V2 API definitions for Solr's ZooKeeper ready-proxy endpoint
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ZooKeeperListChildrenResponse
listNodes(String zkPath, Boolean includeChildren)
ZooKeeperFileResponse
readNode(String zkPath)
ZooKeeperFileResponse
readSecurityJsonNode()
-
-
-
Method Detail
-
readNode
@GET @Path("/data{zkPath:.+}") @Produces({"application/vnd.apache.solr.raw","application/json"}) ZooKeeperFileResponse readNode(@PathParam("zkPath") String zkPath)
-
readSecurityJsonNode
@GET @Path("/data/security.json") @Produces({"application/vnd.apache.solr.raw","application/json"}) ZooKeeperFileResponse readSecurityJsonNode()
-
listNodes
@GET @Path("/children{zkPath:.*}") @Produces({"application/json","application/javabin"}) ZooKeeperListChildrenResponse listNodes(@PathParam("zkPath") String zkPath, @QueryParam("children") Boolean includeChildren) throws Exception
- Throws:
Exception
-
-