use of alluxio.wire.AlluxioWorkerInfo in project alluxio by Alluxio.
the class AlluxioWorkerRestApiTest method getInfo.
private AlluxioWorkerInfo getInfo() throws Exception {
String result = new TestCase(mHostname, mPort, getEndpoint(AlluxioWorkerRestServiceHandler.GET_INFO), NO_PARAMS, HttpMethod.GET, null).call();
AlluxioWorkerInfo info = new ObjectMapper().readValue(result, AlluxioWorkerInfo.class);
return info;
}
Aggregations