it.cnr.contab.config00.bp.CRUDCodiciSiopeBP Maven / Gradle / Ivy
/*
* Copyright (C) 2019 Consiglio Nazionale delle Ricerche
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
/*
* Created on Feb 23, 2006
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package it.cnr.contab.config00.bp;
import it.cnr.contab.config00.bulk.Codici_siopeBulk;
import it.cnr.jada.action.ActionContext;
import it.cnr.jada.action.BusinessProcessException;
import it.cnr.jada.bulk.OggettoBulk;
import it.cnr.jada.bulk.ValidationException;
import it.cnr.jada.util.action.SimpleCRUDBP;
/**
* @author fgiardina
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class CRUDCodiciSiopeBP extends SimpleCRUDBP {
public CRUDCodiciSiopeBP() {
super();
}
public CRUDCodiciSiopeBP(String function) throws BusinessProcessException{
super(function);
}
public OggettoBulk createNewBulk(ActionContext context) throws BusinessProcessException {
Codici_siopeBulk siope = (Codici_siopeBulk)super.createNewBulk(context);
return siope;
}
public void validainserimento(ActionContext context, Codici_siopeBulk bulk) throws ValidationException{
if ( bulk.getEsercizio()==null)
throw new ValidationException("E' necessario inserire l' Esercizio");
if ( bulk.getTi_gestione()==null)
throw new ValidationException("E' necessario inserire la gestione Entrata/Spesa");
if ( bulk.getCd_siope()==null)
throw new ValidationException("E' necessario inserire il Codice Siope");
if ( bulk.getDescrizione()==null)
throw new ValidationException("E' necessario inserire la Descrizione");
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy