use of org.locationtech.geowave.service.grpc.protobuf.ListIndicesCommandParametersProtos in project geowave by locationtech.
the class GeoWaveGrpcTestClient method ListIndexCommand.
public String ListIndexCommand() {
final ArrayList<String> params = new ArrayList<>();
params.add(GeoWaveGrpcTestUtils.storeName);
final ListIndicesCommandParametersProtos request = ListIndicesCommandParametersProtos.newBuilder().addAllParameters(params).build();
final StringResponseProtos resp = coreStoreBlockingStub.listIndicesCommand(request);
return resp.getResponseValue();
}
Aggregations