}
return toReturn;
}
private Object toHotLink(Object[] row) {
HotLink toReturn = new HotLink();
toReturn.setObjId((Integer) row[1]);
toReturn.setDocumentLabel((String) row[2]);
toReturn.setDocumentName((String) row[3]);
toReturn.setDocumentDescription((String) row[4]);
toReturn.setDocumentType((String) row[5]);
toReturn.setSubObjId((Integer) row[6]);
toReturn.setSubObjName((String) row[7]);
toReturn.setParameters((String) row[8]);
toReturn.setEngineName((String) row[9]);
return toReturn;
}