.setBodyContent("Please write your hql, it shoud not be empty!");
cusDialog.center();
return;
}
HiveQueryInputBo hqInputBo = new HiveQueryInputBo();
hqInputBo.setHql(hqlTextArea.getValue());
hqInputBo.setDatabase(dbListBox.getItemText(dbListBox
.getSelectedIndex()));
hqInputBo.setResultLimit(300);
hqInputBo.setTimestamp(new Date().getTime());
hqInputBo.setUsername(getUsername());
hqInputBo.setTokenid(getTokenid());
hqInputBo.setStoreResult(isStoreFile.getValue());
submitBut.setEnabled(false);
progressTextArea.setText("Executing Hive Query .........");
hiveQueryService.getQueryResult(hqInputBo,
new AsyncCallback<HiveQueryOutputBo>() {