818283848586878889909192
roleVO = dao.findRole(dsName, dbType, roleID); log.debug("returning dao.findRole"); } catch (DAOException e) { BusinessException be=new BusinessException(e.getMessage()); be.setMessageKey(e.getMessageKey()); throw be; } return roleVO;
144145146147148149150151152153154155
} catch(DAOException e) { log.error("ERROR in search ROLE ",e); BusinessException be=new BusinessException(e.getMessage()); be.setMessageKey(e.getMessageKey()); throw be; } return roleData;
172173174175176177178179180181
dao.delete(dsName,dbType,id); } catch (DAOException e) { log.error("ERROR in deleteRole ",e); BusinessException be=new BusinessException(e.getMessage()); be.setMessageKey(e.getMessageKey()); throw be; } }
52535455565758596061
dao.createUser(dsName,dbType,userVO); } catch (DAOException e) { log.error("ERROR in createUser ",e); BusinessException be=new BusinessException(e.getMessage()); be.setMessageKey(e.getMessageKey()); throw be; } }
227228229230231232233234235236237
dao.updateUser(dsName,dbType,userVO); } catch (DAOException e) { log.error("ERROR in createUser ",e); BusinessException be=new BusinessException(e.getMessage()); be.setMessageKey(e.getMessageKey()); throw be; } }
288289290291292293294295296297298299
} catch(DAOException e) { log.error("ERROR in search USER ",e); BusinessException be=new BusinessException(e.getMessage()); be.setMessageKey(e.getMessageKey()); throw be; } return userData;
317318319320321322323324325326
dao.delete(dsName,dbType,id); } catch (DAOException e) { log.error("ERROR in deleteUser ",e); BusinessException be=new BusinessException(e.getMessage()); be.setMessageKey(e.getMessageKey()); throw be; } }