ProprietaOggettoSintetico.java

  1. /*
  2.  * GovWay - A customizable API Gateway
  3.  * https://govway.org
  4.  *
  5.  * Copyright (c) 2005-2025 Link.it srl (https://link.it).
  6.  *
  7.  * This program is free software: you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License version 3, as published by
  9.  * the Free Software Foundation.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  18.  *
  19.  */
  20. package org.openspcoop2.core.registry.beans;

  21. import java.io.Serializable;

  22. import org.openspcoop2.core.registry.ProprietaOggetto;


  23. /**
  24.  * ProprietaOggettoSintetico
  25.  *
  26.  * @version $Rev$, $Date$
  27.  *
  28.  * @author Poli Andrea (poli@link.it)
  29.  * @author $Author$
  30.  * */

  31. public class ProprietaOggettoSintetico extends org.openspcoop2.utils.beans.BaseBeanWithId implements Serializable , Cloneable {

  32.     private static final long serialVersionUID = 1L;

  33.     private java.lang.String utenteRichiedente;

  34.     private java.util.Date dataCreazione;

  35.     private java.lang.String utenteUltimaModifica;

  36.     private java.util.Date dataUltimaModifica;

  37.     public ProprietaOggettoSintetico() {
  38.         super();
  39.     }
  40.     public ProprietaOggettoSintetico(ProprietaOggetto proprieta) {
  41.         if(proprieta!=null) {
  42.             this.utenteRichiedente = proprieta.getUtenteRichiedente();
  43.             this.dataCreazione = proprieta.getDataCreazione();
  44.             this.utenteUltimaModifica = proprieta.getUtenteUltimaModifica();
  45.             this.dataUltimaModifica = proprieta.getDataUltimaModifica();
  46.         }
  47.     }
  48.    
  49.     public java.lang.String getUtenteRichiedente() {
  50.         return this.utenteRichiedente;
  51.     }

  52.     public void setUtenteRichiedente(java.lang.String utenteRichiedente) {
  53.         this.utenteRichiedente = utenteRichiedente;
  54.     }

  55.     public java.util.Date getDataCreazione() {
  56.         return this.dataCreazione;
  57.     }

  58.     public void setDataCreazione(java.util.Date dataCreazione) {
  59.         this.dataCreazione = dataCreazione;
  60.     }

  61.     public java.lang.String getUtenteUltimaModifica() {
  62.         return this.utenteUltimaModifica;
  63.     }

  64.     public void setUtenteUltimaModifica(java.lang.String utenteUltimaModifica) {
  65.         this.utenteUltimaModifica = utenteUltimaModifica;
  66.     }

  67.     public java.util.Date getDataUltimaModifica() {
  68.         return this.dataUltimaModifica;
  69.     }

  70.     public void setDataUltimaModifica(java.util.Date dataUltimaModifica) {
  71.         this.dataUltimaModifica = dataUltimaModifica;
  72.     }

  73. }