*/
@Override
protected List<ExportTempTableBean> getExportTempTable(String jobflowSid)
throws BulkLoaderSystemException {
ExportTempTableBean[] tempBean = new ExportTempTableBean[2];
tempBean[0] = new ExportTempTableBean();
tempBean[0].setJobflowSid("11");
tempBean[0].setExportTableName("table1");
tempBean[0].setTemporaryTableName("teble1_tmp");
tempBean[0].setTempTableStatus(ExportTempTableStatus.find("1"));
tempBean[1] = new ExportTempTableBean();
tempBean[1].setJobflowSid("11");
tempBean[1].setExportTableName("table2");
tempBean[1].setTemporaryTableName("table2_temp");
tempBean[1].setTempTableStatus(ExportTempTableStatus.find("1"));
return Arrays.asList(tempBean);