public DisableTableResponse disableTable(RpcController controller,
DisableTableRequest request) throws ServiceException {
byte[] tableName = request.getTableName().toByteArray();
try {
checkInitialized();
this.executorService.submit(new DisableTableHandler(this,
this.assignmentManager, tableName, this, false));
} catch (IOException ioe) {
throw new ServiceException(ioe);
}
return DisableTableResponse.newBuilder().build();