Ejemplo n.º 1
0
 /** @see org.telscenter.sail.webapp.service.offering.RunService#getAllRunList() */
 @Transactional()
 public List<Run> getAllRunList() {
   return runDao.getList();
 }
Ejemplo n.º 2
0
 /** @see net.sf.sail.webapp.service.offering.OfferingService#getOfferingList() */
 @Transactional()
 public List<Run> getRunList() {
   // for some reason, runDao.getList returns all runs, when it should
   // only return runs with the right privileges according to Acegi.
   return runDao.getList();
 }