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