示例#1
0
 /**
  * update
  *
  * <p>Updates the given track in db
  *
  * @param track
  * @return Track updated
  * @throws EJBException
  */
 @Override
 public Track update(final Track track) throws EJBException {
   try {
     return trackService.update(track);
   } catch (ServiceException e) {
     log.error(e);
     throw new EJBException(e);
   }
 }