Package it.pdor.gestionePratica.exception

Examples of it.pdor.gestionePratica.exception.DataAntecedenteDataDecorrenzaException


  public GruppoDatiFinanziari getDatiFinanziariAllaData(long numeroMutuoUnivoco, Date allaData)
      throws DataAntecedenteDataDecorrenzaException {

    Mutuo mutuo = this.getMutuoById(numeroMutuoUnivoco);
    if (mutuo.getDataDecorrenza().after(allaData))
      throw new DataAntecedenteDataDecorrenzaException();

    DetachedCriteria criteria = DetachedCriteria.forClass(GruppoDatiFinanziari.class);
    criteria.add(Restrictions.eq("mutuo.numeroMutuo", new Long(numeroMutuoUnivoco)));
    criteria.add(Restrictions.le("dataInizioValidita", allaData));
View Full Code Here

TOP

Related Classes of it.pdor.gestionePratica.exception.DataAntecedenteDataDecorrenzaException

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.