Package it.pdor.contabilita.domain.hbm

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


  public MutuoOperazione leggiMutuoOperazione(String codiceMutuoInterno, String codiceFunzione,
      String codiceFamiglia, String codiceOperazione) throws ImpossibileLeggereMutuoOperazioneException {
    try {
      return (MutuoOperazione) getHibernateTemplate().get(
          MutuoOperazione.class,
          new MutuoOperazioneId(codiceMutuoInterno, codiceFunzione, codiceFamiglia, codiceOperazione,
              legalEntity, organizationUnit));
    } catch (DataAccessException e) {
      log("Impossibile Leggere MutuoOperazione [CODICE MUTUO INTERNO] " + codiceMutuoInterno);
      log("Impossibile Leggere MutuoOperazione [CODICE FUNZIONE] " + codiceFunzione);
      log("Impossibile Leggere MutuoOperazione [CODICE FAMIGLIA] " + codiceFamiglia);
View Full Code Here

TOP

Related Classes of it.pdor.contabilita.domain.hbm.MutuoOperazioneId

Copyright © 2018 www.massapicom. 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.