it.cnr.contab.config00.bulk.Parametri_cnrKey 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: (09/11/2004)
* @author Aurelio D'Amico
* @version 1.0
*/
public class Parametri_cnrKey extends OggettoBulk implements KeyedPersistent {
// ESERCIZIO DECIMAL(4,0) NOT NULL (PK)
private java.lang.Integer esercizio;
public Parametri_cnrKey() {
super();
}
public Parametri_cnrKey(java.lang.Integer esercizio) {
super();
this.esercizio = esercizio;
}
public boolean equalsByPrimaryKey(Object o) {
if (this == o)
return true;
if (!(o instanceof Parametri_cnrKey))
return false;
Parametri_cnrKey k = (Parametri_cnrKey) o;
if (!compareKey(getEsercizio(), k.getEsercizio()))
return false;
return true;
}
/**
* Getter dell'attributo esercizio
*/
public java.lang.Integer getEsercizio() {
return esercizio;
}
/**
* Setter dell'attributo esercizio
*/
public void setEsercizio(java.lang.Integer esercizio) {
this.esercizio = esercizio;
}
public int primaryKeyHashCode() {
return calculateKeyHashCode(getEsercizio());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy