it.cnr.contab.config00.pdcfin.bulk.NaturaBulk 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 java.util.Dictionary;
import java.util.Optional;
import it.cnr.jada.bulk.*;
import it.cnr.jada.persistency.*;
import it.cnr.jada.persistency.beans.*;
import it.cnr.jada.persistency.sql.*;
public class NaturaBulk extends NaturaBase {
public static final String TIPO_NATURA_FONTI_INTERNE ="FIN";
public static final String TIPO_NATURA_FONTI_ESTERNE ="FES";
public final static Dictionary tipo_naturaKeys;
static {
tipo_naturaKeys = new it.cnr.jada.util.OrderedHashtable();
tipo_naturaKeys.put(TIPO_NATURA_FONTI_INTERNE,"Fonti Interne");
tipo_naturaKeys.put(TIPO_NATURA_FONTI_ESTERNE,"Fonti Esterne");
};
public NaturaBulk() {
super();
}
public NaturaBulk(java.lang.String cd_natura) {
super(cd_natura);
}
public boolean equals(Object obj) {
if(obj instanceof NaturaBulk) {
NaturaBulk aFB = (NaturaBulk)obj;
if(( getCd_natura() == null) && (aFB.getCd_natura() == null)) return true;
if( (( getCd_natura() != null) && (aFB.getCd_natura() == null))
|| (( getCd_natura() == null) && (aFB.getCd_natura() != null))
) return false;
return ((NaturaBulk)obj).getCd_natura().equals( getCd_natura() );
}
return super.equals(obj);
}
/**
* Restituisce il valore della proprietà 'cd_ds_natura'
*
* @return Il valore della proprietà 'cd_ds_natura'
*/
public String getCd_ds_natura() {
return getCd_natura() + " - " + getDs_natura();
}
public boolean isFonteInterna() {
return NaturaBulk.TIPO_NATURA_FONTI_INTERNE.equals(this.getTipo());
}
public boolean isFonteEsterna() {
return NaturaBulk.TIPO_NATURA_FONTI_ESTERNE.equals(this.getTipo());
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy