Remove old class

Original commit: elastic/x-pack-elasticsearch@e075c3b972
This commit is contained in:
Costin Leau 2017-12-23 13:35:42 +02:00
parent 368099dcbd
commit b437341ddc
1 changed files with 0 additions and 32 deletions

View File

@ -1,32 +0,0 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
package org.elasticsearch.xpack.qa.sql.embed;
import org.elasticsearch.client.Client;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.rest.RestChannel;
import org.elasticsearch.rest.RestController;
import org.elasticsearch.xpack.sql.cli.net.protocol.Proto;
import org.elasticsearch.xpack.sql.plugin.RestSqlCliAction;
import java.io.DataInput;
import java.io.IOException;
import static org.mockito.Mockito.mock;
class CliProtoHandler extends ProtoHandler {
private final RestSqlCliAction action;
CliProtoHandler(Client client) {
super(client);
action = new RestSqlCliAction(Settings.EMPTY, mock(RestController.class));
}
@Override
protected void handle(RestChannel channel, DataInput in) throws IOException {
action.operation(Proto.INSTANCE.readRequest(in), client).accept(channel);
}
}