Examples of CausaleAntiMafiaId


Examples of it.pdor.contabilita.domain.hbm.CausaleAntiMafiaId

  public CausaleAntiMafia leggiCausaleAntiMafia(String codiceCausaleAntiMafia)
      throws ImpossibileLeggereCausaleAntiMafiaException {
    try {
      return (CausaleAntiMafia) getHibernateTemplate().get(CausaleAntiMafia.class,
          new CausaleAntiMafiaId(codiceCausaleAntiMafia, legalEntity, organizationUnit));
    } catch (DataAccessException e) {
      log("Impossibile Leggere Causale GestioneAntiMafia: [CODICE] " + codiceCausaleAntiMafia);
      log("Impossibile Leggere Causale GestioneAntiMafia:" + e);
      throw new ImpossibileLeggereCausaleAntiMafiaException();
    }
View Full Code Here

Examples of it.pdor.contabilita.domain.hbm.CausaleAntiMafiaId

      throw new ImpossibileLeggereParametriAntiMafiaException();
    }

    try {
      return (CausaleAntiMafia) getHibernateTemplate().get(CausaleAntiMafia.class,
          new CausaleAntiMafiaId(gpam.getCausaleChiusura(), legalEntity, organizationUnit));
    } catch (DataAccessException e) {
      log("Impossibile Leggere Causale GestioneAntiMafia di chiusura: [CODICE] " + gpam.getCausaleChiusura());
      log("Impossibile Leggere Causale GestioneAntiMafia di chiusura:" + e);
      throw new ImpossibileLeggereCausaleAntiMafiaException();
    }
View Full Code Here

Examples of it.pdor.contabilita.domain.hbm.CausaleAntiMafiaId

      ImpossibileLeggereOperazioneException {
    String codiceOperazioneExpected = "PROVA";
    OperazioneId operazioneIdExpected = new OperazioneId(codiceOperazioneExpected, "", "");
    Operazione operazioneExpected = new Operazione(operazioneIdExpected, "");
    String codiceCausaleAntiMafiaExpected = "xx";
    CausaleAntiMafiaId causaleAntiMafiaIdExpected = new CausaleAntiMafiaId(codiceCausaleAntiMafiaExpected, "", "");
    CausaleAntiMafia causaleAntiMafiaExpected = new CausaleAntiMafia(causaleAntiMafiaIdExpected);
    String descrizioneCausaleAntiMafiaExpected = "descrizione";
    causaleAntiMafiaExpected.setDescrizioneCausaleAntiMafia(descrizioneCausaleAntiMafiaExpected);
    operazioneExpected.setCausaleAntiMafia(causaleAntiMafiaExpected);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.