AccordoCooperazione.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 it.gov.spcoop.sica.manifest;

  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.XmlElement;
  25. import javax.xml.bind.annotation.XmlRootElement;
  26. import javax.xml.bind.annotation.XmlType;
  27. import java.io.Serializable;


  28. /** <p>Java class for accordoCooperazione complex type.
  29.  *
  30.  * <p>The following schema fragment specifies the expected content contained within this class.
  31.  *
  32.  * <pre>
  33.  * &lt;complexType name="accordoCooperazione"&gt;
  34.  *      &lt;sequence&gt;
  35.  *          &lt;element name="descrizione" type="{http://spcoop.gov.it/sica/manifest}string" minOccurs="1" maxOccurs="1"/&gt;
  36.  *          &lt;element name="specificaSemiformale" type="{http://spcoop.gov.it/sica/manifest}SpecificaSemiformale" minOccurs="0" maxOccurs="1"/&gt;
  37.  *          &lt;element name="allegati" type="{http://spcoop.gov.it/sica/manifest}ElencoAllegati" minOccurs="0" maxOccurs="1"/&gt;
  38.  *          &lt;element name="elencoPartecipanti" type="{http://spcoop.gov.it/sica/manifest}ElencoPartecipanti" minOccurs="1" maxOccurs="1"/&gt;
  39.  *          &lt;element name="serviziComposti" type="{http://spcoop.gov.it/sica/manifest}ElencoServiziComposti" minOccurs="0" maxOccurs="1"/&gt;
  40.  *      &lt;/sequence&gt;
  41.  *      &lt;attribute name="nome" type="{http://spcoop.gov.it/sica/manifest}string" use="required"/&gt;
  42.  *      &lt;attribute name="versione" type="{http://spcoop.gov.it/sica/manifest}string" use="optional"/&gt;
  43.  *      &lt;attribute name="dataCreazione" type="{http://www.w3.org/2001/XMLSchema}dateTime" use="required"/&gt;
  44.  *      &lt;attribute name="dataPubblicazione" type="{http://www.w3.org/2001/XMLSchema}dateTime" use="optional"/&gt;
  45.  *      &lt;attribute name="firmato" type="{http://www.w3.org/2001/XMLSchema}boolean" use="optional" default="false"/&gt;
  46.  *      &lt;attribute name="riservato" type="{http://www.w3.org/2001/XMLSchema}boolean" use="optional" default="false"/&gt;
  47.  *      &lt;attribute name="coordinatore" type="{http://spcoop.gov.it/sica/manifest}anyURI" use="optional"/&gt;
  48.  * &lt;/complexType&gt;
  49.  * </pre>
  50.  *
  51.  * @version $Rev$, $Date$
  52.  *
  53.  * @author Poli Andrea (poli@link.it)
  54.  * @author $Author$
  55.  * */

  56. @XmlAccessorType(XmlAccessType.FIELD)
  57. @XmlType(name = "accordoCooperazione",
  58.   propOrder = {
  59.     "descrizione",
  60.     "specificaSemiformale",
  61.     "allegati",
  62.     "elencoPartecipanti",
  63.     "serviziComposti"
  64.   }
  65. )

  66. @XmlRootElement(name = "accordoCooperazione")

  67. public class AccordoCooperazione extends org.openspcoop2.utils.beans.BaseBean implements Serializable , Cloneable {
  68.   public AccordoCooperazione() {
  69.     super();
  70.   }

  71.   public java.lang.String getDescrizione() {
  72.     return this.descrizione;
  73.   }

  74.   public void setDescrizione(java.lang.String descrizione) {
  75.     this.descrizione = descrizione;
  76.   }

  77.   public SpecificaSemiformale getSpecificaSemiformale() {
  78.     return this.specificaSemiformale;
  79.   }

  80.   public void setSpecificaSemiformale(SpecificaSemiformale specificaSemiformale) {
  81.     this.specificaSemiformale = specificaSemiformale;
  82.   }

  83.   public ElencoAllegati getAllegati() {
  84.     return this.allegati;
  85.   }

  86.   public void setAllegati(ElencoAllegati allegati) {
  87.     this.allegati = allegati;
  88.   }

  89.   public ElencoPartecipanti getElencoPartecipanti() {
  90.     return this.elencoPartecipanti;
  91.   }

  92.   public void setElencoPartecipanti(ElencoPartecipanti elencoPartecipanti) {
  93.     this.elencoPartecipanti = elencoPartecipanti;
  94.   }

  95.   public ElencoServiziComposti getServiziComposti() {
  96.     return this.serviziComposti;
  97.   }

  98.   public void setServiziComposti(ElencoServiziComposti serviziComposti) {
  99.     this.serviziComposti = serviziComposti;
  100.   }

  101.   public java.lang.String getNome() {
  102.     return this.nome;
  103.   }

  104.   public void setNome(java.lang.String nome) {
  105.     this.nome = nome;
  106.   }

  107.   public java.lang.String getVersione() {
  108.     return this.versione;
  109.   }

  110.   public void setVersione(java.lang.String versione) {
  111.     this.versione = versione;
  112.   }

  113.   public java.util.Date getDataCreazione() {
  114.     return this.dataCreazione;
  115.   }

  116.   public void setDataCreazione(java.util.Date dataCreazione) {
  117.     this.dataCreazione = dataCreazione;
  118.   }

  119.   public java.util.Date getDataPubblicazione() {
  120.     return this.dataPubblicazione;
  121.   }

  122.   public void setDataPubblicazione(java.util.Date dataPubblicazione) {
  123.     this.dataPubblicazione = dataPubblicazione;
  124.   }

  125.   public boolean isFirmato() {
  126.     return this.firmato;
  127.   }

  128.   public boolean getFirmato() {
  129.     return this.firmato;
  130.   }

  131.   public void setFirmato(boolean firmato) {
  132.     this.firmato = firmato;
  133.   }

  134.   public boolean isRiservato() {
  135.     return this.riservato;
  136.   }

  137.   public boolean getRiservato() {
  138.     return this.riservato;
  139.   }

  140.   public void setRiservato(boolean riservato) {
  141.     this.riservato = riservato;
  142.   }

  143.   public java.net.URI getCoordinatore() {
  144.     return this.coordinatore;
  145.   }

  146.   public void setCoordinatore(java.net.URI coordinatore) {
  147.     this.coordinatore = coordinatore;
  148.   }

  149.   private static final long serialVersionUID = 1L;

  150.   private static it.gov.spcoop.sica.manifest.model.AccordoCooperazioneModel modelStaticInstance = null;
  151.   private static synchronized void initModelStaticInstance(){
  152.       if(it.gov.spcoop.sica.manifest.AccordoCooperazione.modelStaticInstance==null){
  153.             it.gov.spcoop.sica.manifest.AccordoCooperazione.modelStaticInstance = new it.gov.spcoop.sica.manifest.model.AccordoCooperazioneModel();
  154.       }
  155.   }
  156.   public static it.gov.spcoop.sica.manifest.model.AccordoCooperazioneModel model(){
  157.       if(it.gov.spcoop.sica.manifest.AccordoCooperazione.modelStaticInstance==null){
  158.             initModelStaticInstance();
  159.       }
  160.       return it.gov.spcoop.sica.manifest.AccordoCooperazione.modelStaticInstance;
  161.   }


  162.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  163.   @XmlElement(name="descrizione",required=true,nillable=false)
  164.   protected java.lang.String descrizione;

  165.   @XmlElement(name="specificaSemiformale",required=false,nillable=false)
  166.   protected SpecificaSemiformale specificaSemiformale;

  167.   @XmlElement(name="allegati",required=false,nillable=false)
  168.   protected ElencoAllegati allegati;

  169.   @XmlElement(name="elencoPartecipanti",required=true,nillable=false)
  170.   protected ElencoPartecipanti elencoPartecipanti;

  171.   @XmlElement(name="serviziComposti",required=false,nillable=false)
  172.   protected ElencoServiziComposti serviziComposti;

  173.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  174.   @XmlAttribute(name="nome",required=true)
  175.   protected java.lang.String nome;

  176.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  177.   @XmlAttribute(name="versione",required=false)
  178.   protected java.lang.String versione;

  179.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(org.openspcoop2.utils.jaxb.DateTime2String.class)
  180.   @javax.xml.bind.annotation.XmlSchemaType(name="dateTime")
  181.   @XmlAttribute(name="dataCreazione",required=true)
  182.   protected java.util.Date dataCreazione;

  183.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(org.openspcoop2.utils.jaxb.DateTime2String.class)
  184.   @javax.xml.bind.annotation.XmlSchemaType(name="dateTime")
  185.   @XmlAttribute(name="dataPubblicazione",required=false)
  186.   protected java.util.Date dataPubblicazione;

  187.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  188.   @XmlAttribute(name="firmato",required=false)
  189.   protected boolean firmato = false;

  190.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  191.   @XmlAttribute(name="riservato",required=false)
  192.   protected boolean riservato = false;

  193.   @javax.xml.bind.annotation.XmlSchemaType(name="anyURI")
  194.   @XmlAttribute(name="coordinatore",required=false)
  195.   protected java.net.URI coordinatore;

  196. }