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

it.cnr.contab.config00.sto.bulk.UnitaOrganizzativaPecBase 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 .
 */

/*
 * Created by BulkGenerator 2.0 [07/12/2009]
 * Date 14/06/2010
 */
package it.cnr.contab.config00.sto.bulk;
import org.apache.commons.codec.binary.Base64;

import it.cnr.contab.util.StringEncrypter;
import it.cnr.contab.util.StringEncrypter.EncryptionException;
import it.cnr.jada.persistency.Keyed;
public class UnitaOrganizzativaPecBase extends UnitaOrganizzativaPecKey implements Keyed {
//    EMAIL_PEC VARCHAR(100) NOT NULL
	private java.lang.String sigla;
	private java.lang.String emailPec;
	private java.lang.String emailPecDirettore;
	private java.lang.String emailPecProtocollo;
	private java.lang.String codPecProtocollo;
	/**
	 * Created by BulkGenerator 2.0 [07/12/2009]
	 * Table name: UNITA_ORGANIZZATIVA_PEC
	 **/
	public UnitaOrganizzativaPecBase() {
		super();
	}
	public UnitaOrganizzativaPecBase(java.lang.String cdUnitaOrganizzativa) {
		super(cdUnitaOrganizzativa);
	}
	/**
	 * Created by BulkGenerator 2.0 [07/12/2009]
	 * Restituisce il valore di: [emailPec]
	 **/
	public java.lang.String getEmailPec() {
		return emailPec;
	}
	/**
	 * Created by BulkGenerator 2.0 [07/12/2009]
	 * Setta il valore di: [emailPec]
	 **/
	public void setEmailPec(java.lang.String emailPec)  {
		this.emailPec=emailPec;
	}
	public void setEmailPecDirettore(java.lang.String emailPecDirettore) {
		this.emailPecDirettore = emailPecDirettore;
	}
	public java.lang.String getEmailPecDirettore() {
		return emailPecDirettore;
	}
	public void setSigla(java.lang.String sigla) {
		this.sigla = sigla;
	}
	public java.lang.String getSigla() {
		return sigla;
	}
	public java.lang.String getEmailPecProtocollo() {
		return emailPecProtocollo;
	}
	public void setEmailPecProtocollo(java.lang.String emailPecProtocollo) {
		this.emailPecProtocollo = emailPecProtocollo;
	}
	public java.lang.String getCodPecProtocollo() {
		return codPecProtocollo;
	}
	public void setCodPecProtocollo(java.lang.String codPecProtocollo) {
		this.codPecProtocollo = codPecProtocollo;
	}	
	public java.lang.String getCodPecProtocolloInChiaro() {
		try {
			return StringEncrypter.decrypt(emailPecProtocollo, codPecProtocollo);
		} catch (EncryptionException e) {
			return codPecProtocollo;
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy