All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.cnr.contab.doccont00.ordine.bulk.OrdineHome 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 .
 */

package it.cnr.contab.doccont00.ordine.bulk;

import it.cnr.contab.doccont00.core.bulk.*;
import it.cnr.jada.bulk.*;
import it.cnr.jada.persistency.*;
import it.cnr.jada.persistency.sql.*;

public class OrdineHome extends BulkHome {
public OrdineHome(Class clazz, java.sql.Connection conn) {
	super(clazz,conn);
}
public OrdineHome(Class clazz, java.sql.Connection conn,PersistentCache persistentCache) {
	super(clazz,conn,persistentCache);
}
public OrdineHome(java.sql.Connection conn) {
	super(OrdineBulk.class,conn);
}
public OrdineHome(java.sql.Connection conn,PersistentCache persistentCache) {
	super(OrdineBulk.class,conn,persistentCache);
}
/**
 * Insert the method's description here.
 * Creation date: (31/01/2002 15.24.19)
 * @param userContext it.cnr.jada.UserContext
 * @param obblig it.cnr.contab.doccont00.core.bulk.ObbligazioneOrdBulk
 */
public OrdineBulk findOrdineFor(ObbligazioneBulk obblig) throws PersistencyException {

	OrdineBulk ordine = null;
	SQLBuilder sql = createSQLBuilder();

	sql.addClause("AND","cd_cds",sql.EQUALS,obblig.getCd_cds());
	sql.addClause("AND","esercizio",sql.EQUALS,obblig.getEsercizio());
	sql.addClause("AND","esercizio_ori_obbligazione",sql.EQUALS,obblig.getEsercizio_originale());
	sql.addClause("AND","pg_obbligazione",sql.EQUALS,obblig.getPg_obbligazione());

	SQLBroker broker = createBroker(sql);
	if (broker.next())
		ordine = (OrdineBulk)fetch(broker);
	broker.close();

	return ordine;
}
/**
 * Insert the method's description here.
 * Creation date: (31/01/2002 15.24.19)
 * @param userContext it.cnr.jada.UserContext
 * @param obblig it.cnr.contab.doccont00.core.bulk.ObbligazioneOrdBulk
 */
public void initializePrimaryKeyForInsert(it.cnr.jada.UserContext userContext,OggettoBulk bulk) throws PersistencyException,it.cnr.jada.comp.ComponentException {
	
	try{
		OrdineBulk ordine = (OrdineBulk)bulk;

		long pg = ((Long)findAndLockMax(ordine,"pg_ordine", new Long(0))).longValue() + 1;
		ordine.setPg_ordine(new Long(pg));

	} catch(it.cnr.jada.bulk.BusyResourceException e) {
		throw new it.cnr.jada.persistency.PersistencyException(e);
	}
}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy