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

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

import it.cnr.jada.bulk.OggettoBulk;
import it.cnr.jada.persistency.KeyedPersistent;

/**
 * Creation date: (12/11/2004)
 * @author Aurelio D'Amico
 * @version 1.0
 */
public class Parametri_cdsKey extends OggettoBulk implements KeyedPersistent {
	// ESERCIZIO DECIMAL(4,0) NOT NULL (PK)
	private Integer esercizio;

	// CD_CDS VARCHAR(30) NOT NULL (PK)
	private String cd_cds;

	public Parametri_cdsKey() {
		super();
	}
	public Parametri_cdsKey(String cd_cds,Integer esercizio) {
		super();
		this.cd_cds = cd_cds;
		this.esercizio = esercizio;
	}
	public boolean equalsByPrimaryKey(Object o) {
		if (this == o)
			return true;
		if (!(o instanceof Parametri_cdsKey))
			return false;
		Parametri_cdsKey k = (Parametri_cdsKey) o;
		if (!compareKey(getCd_cds(), k.getCd_cds()))
			return false;
		if (!compareKey(getEsercizio(), k.getEsercizio()))
			return false;
		return true;
	}
	public int primaryKeyHashCode() {
		return calculateKeyHashCode(getCd_cds())
			+ calculateKeyHashCode(getEsercizio());
	}

	/**
	 * Getter dell'attributo esercizio
	 */
	public Integer getEsercizio() {
		return esercizio;
	}
	/**
	 * Setter dell'attributo esercizio
	 */
	public void setEsercizio(Integer esercizio) {
		this.esercizio = esercizio;
	}

	/**
	 * Getter dell'attributo cds
	 */
	public String getCd_cds() {
		return cd_cds;
	}

	/**
	 * Setter dell'attributo cds
	 */
	public void setCd_cds(String string) {
		cd_cds = string;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy