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

it.cnr.contab.config00.pdcfin.bulk.NaturaHome 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.config00.pdcfin.bulk;

import it.cnr.jada.bulk.*;
import it.cnr.jada.comp.ApplicationException;
import it.cnr.jada.persistency.*;
import it.cnr.jada.persistency.beans.*;
import it.cnr.jada.persistency.sql.*;

import java.util.*;

public class NaturaHome extends BulkHome {
	private static it.cnr.jada.util.OrderedHashtable naturaKeys;
/**
 * 
 * Costruisce un NaturaHome
 *
 * @param conn	La java.sql.Connection su cui vengono effettuate le operazione di persistenza
 */
public NaturaHome(java.sql.Connection conn) {
	super(NaturaBulk.class,conn);
}
/**
 * 
 * Costruisce un NaturaHome
 *
 * @param conn	La java.sql.Connection su cui vengono effettuate le operazione di persistenza
 * @param persistentCache	La PersistentCache in cui vengono cachati gli oggetti persistenti caricati da questo Home
 */
public NaturaHome(java.sql.Connection conn,PersistentCache persistentCache) {
	super(NaturaBulk.class,conn,persistentCache);
}
/**
 * Carica in una hashtable l'elenco di Nature presenti nel database
 * @return it.cnr.jada.util.OrderedHashtable
 */

public Dictionary loadNaturaKeys(OggettoBulk bulk) throws it.cnr.jada.comp.ApplicationException
{
	if (naturaKeys == null)
	{
		try
		{
			NaturaBulk naturaBulk = new NaturaBulk();
			java.util.List nature = find( (Persistent) naturaBulk, true );
			naturaKeys = new it.cnr.jada.util.OrderedHashtable() ;
			SQLBuilder sql = select( naturaBulk );
			sql.addOrderBy( "cd_natura" );
			
			for (java.util.Iterator i = nature.iterator();i.hasNext();)
			{			
				naturaBulk = (it.cnr.contab.config00.pdcfin.bulk.NaturaBulk) i.next();
				naturaKeys.put( naturaBulk.getCd_natura(), naturaBulk.getCd_natura().concat(" - ").concat( naturaBulk.getDs_natura()));
			}					
				
		}		
		catch (Exception e)
		{
			naturaKeys = null ;
			throw new ApplicationException( "Non è possibile recuperare la natura. " );
		}
	}	
	return naturaKeys;
}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy