}
public Mastro leggiMastro(long codiceGruppo, long codiceMastro) throws ImpossibileLeggereMastroException {
try {
return (Mastro) getHibernateTemplate().get(Mastro.class,
new MastroId(codiceGruppo, codiceMastro, legalEntity, organizationUnit));
} catch (DataAccessException e) {
log("Impossibile Leggere Mastro [CODICEGRUPPO] " + codiceGruppo);
log("Impossibile Leggere Mastro [CODICEMASTRO] " + codiceMastro);
log("Impossibile Leggere Mastro " + e);
throw new ImpossibileLeggereMastroException();