805806807808809810811812813814815
} return array; } catch (HibernateException he) { throw new SystemException(he); } finally { HibernateUtil.closeSession(session); } }
833834835836837838839840841842843
} return list; } catch (HibernateException he) { throw new SystemException(he); } finally { HibernateUtil.closeSession(session); } }
867868869870871872873874875876877
} session.flush(); } catch (HibernateException he) { throw new SystemException(he); } finally { HibernateUtil.closeSession(session); } }
902903904905906907908909910911912
940941942943944945946947948949950
977978979980981982983984985986987
} return 0; } catch (HibernateException he) { throw new SystemException(he); } finally { HibernateUtil.closeSession(session); } }
10141015101610171018101910201021102210231024
10551056105710581059106010611062106310641065
6869707172737475767778
catch (HibernateException he) { if (he instanceof ObjectNotFoundException) { throw new NoSuchUserTrackerException(userTrackerId.toString()); } else { throw new SystemException(he); } } finally { HibernateUtil.closeSession(session); }
131132133134135136137138139140141
} return userTracker; } catch (HibernateException he) { throw new SystemException(he); } finally { HibernateUtil.closeSession(session); } }