/** {@inheritDoc} */ @Override public Platform findByID(Integer id) { Platform obj = null; if (id != null) { try { obj = platformDAO.findByID(id); } catch (Exception exception) { LOG.error("Cannot find Platform by id " + id); LOG.error(exception.getMessage()); } } return obj; }
/** {@inheritDoc} */ @Override public List<Platform> list() { return platformDAO.list(); }
/** {@inheritDoc} */ @Override public Platform updateDetached(Platform platform) { return platformDAO.updateDetached(platform); }
/** {@inheritDoc} */ @Override public List<Platform> list(Registration registration) { return platformDAO.list(registration); }