ProprietaOggetto.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.config;

  21. import javax.xml.bind.annotation.XmlAccessType;
  22. import javax.xml.bind.annotation.XmlAccessorType;
  23. import javax.xml.bind.annotation.XmlAttribute;
  24. import javax.xml.bind.annotation.XmlRootElement;
  25. import javax.xml.bind.annotation.XmlType;
  26. import java.io.Serializable;


  27. /** <p>Java class for proprieta-oggetto complex type.
  28.  *
  29.  * <p>The following schema fragment specifies the expected content contained within this class.
  30.  *
  31.  * <pre>
  32.  * &lt;complexType name="proprieta-oggetto"&gt;
  33.  *      &lt;attribute name="utente-richiedente" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/&gt;
  34.  *      &lt;attribute name="data-creazione" type="{http://www.w3.org/2001/XMLSchema}dateTime" use="optional"/&gt;
  35.  *      &lt;attribute name="utente-ultima-modifica" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/&gt;
  36.  *      &lt;attribute name="data-ultima-modifica" type="{http://www.w3.org/2001/XMLSchema}dateTime" use="optional"/&gt;
  37.  * &lt;/complexType&gt;
  38.  * </pre>
  39.  *
  40.  * @version $Rev$, $Date$
  41.  *
  42.  * @author Poli Andrea (poli@link.it)
  43.  * @author $Author$
  44.  * */

  45. @XmlAccessorType(XmlAccessType.FIELD)
  46. @XmlType(name = "proprieta-oggetto")

  47. @XmlRootElement(name = "proprieta-oggetto")

  48. public class ProprietaOggetto extends org.openspcoop2.utils.beans.BaseBeanWithId implements Serializable , Cloneable {
  49.   public ProprietaOggetto() {
  50.     super();
  51.   }

  52.   public java.lang.String getUtenteRichiedente() {
  53.     return this.utenteRichiedente;
  54.   }

  55.   public void setUtenteRichiedente(java.lang.String utenteRichiedente) {
  56.     this.utenteRichiedente = utenteRichiedente;
  57.   }

  58.   public java.util.Date getDataCreazione() {
  59.     return this.dataCreazione;
  60.   }

  61.   public void setDataCreazione(java.util.Date dataCreazione) {
  62.     this.dataCreazione = dataCreazione;
  63.   }

  64.   public java.lang.String getUtenteUltimaModifica() {
  65.     return this.utenteUltimaModifica;
  66.   }

  67.   public void setUtenteUltimaModifica(java.lang.String utenteUltimaModifica) {
  68.     this.utenteUltimaModifica = utenteUltimaModifica;
  69.   }

  70.   public java.util.Date getDataUltimaModifica() {
  71.     return this.dataUltimaModifica;
  72.   }

  73.   public void setDataUltimaModifica(java.util.Date dataUltimaModifica) {
  74.     this.dataUltimaModifica = dataUltimaModifica;
  75.   }

  76.   private static final long serialVersionUID = 1L;



  77.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  78.   @XmlAttribute(name="utente-richiedente",required=false)
  79.   protected java.lang.String utenteRichiedente;

  80.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(org.openspcoop2.utils.jaxb.DateTime2String.class)
  81.   @javax.xml.bind.annotation.XmlSchemaType(name="dateTime")
  82.   @XmlAttribute(name="data-creazione",required=false)
  83.   protected java.util.Date dataCreazione;

  84.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  85.   @XmlAttribute(name="utente-ultima-modifica",required=false)
  86.   protected java.lang.String utenteUltimaModifica;

  87.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(org.openspcoop2.utils.jaxb.DateTime2String.class)
  88.   @javax.xml.bind.annotation.XmlSchemaType(name="dateTime")
  89.   @XmlAttribute(name="data-ultima-modifica",required=false)
  90.   protected java.util.Date dataUltimaModifica;

  91. }