use of org.locationtech.geowave.service.grpc.protobuf.ListCommandParametersProtos in project geowave by locationtech.
the class GeoWaveGrpcTestClient method listCommand.
public Map<String, String> listCommand() {
final ListCommandParametersProtos request = ListCommandParametersProtos.newBuilder().build();
final MapStringStringResponseProtos response = coreCliBlockingStub.listCommand(request);
final Map<String, String> map = response.getResponseValueMap();
return map;
}
Aggregations