public void save(GecompModelObject element) throws GeCompException { try { Iscrizione iscrizione = (Iscrizione) retrieve(element); logger.debug("Customized Iscrizione = " + iscrizione); if (Eval.isNull(iscrizione.getIdIscrizione())) { iscrizione = (Iscrizione) getBridge().insert(iscrizione); } else { getBridge().update(iscrizione); } } catch (GeCompException gce) { logger.error("Errore gestito", gce); throw gce; } catch (Exception ex) { logger.error("net.sb.gecomp.console.iscrizioni.delegates.save.generic_error", ex); throw new GeCompException( "net.sb.gecomp.console.iscrizioni.delegates.save.generic_error", ex); } }
protected void checkCompetitivo(IscrizioneView iscrizione) throws GeCompException { if (Eval.isNull(iscrizione.getCompetitivo())) { throw new GeCompException( "net.sb.gecomp.console.iscrizioni.controllers.error.competitivo.empty"); } }
protected void checkGara(IscrizioneView iscrizione) throws GeCompException { if (Eval.isNull(iscrizione.getGara()) || Eval.isNull(iscrizione.getGara().getIdGara())) { throw new GeCompException("net.sb.gecomp.console.iscrizioni.controllers.error.gara.empty"); } }