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