IdConfigurazioneServizio.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.monitor.engine.config.transazioni;

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


  27. /** <p>Java class for id-configurazione-servizio complex type.
  28.  *
  29.  * <p>The following schema fragment specifies the expected content contained within this class.
  30.  *
  31.  * <pre>
  32.  * &lt;complexType name="id-configurazione-servizio"&gt;
  33.  *      &lt;sequence&gt;
  34.  *          &lt;element name="accordo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="1" maxOccurs="1"/&gt;
  35.  *          &lt;element name="tipo-soggetto-referente" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  36.  *          &lt;element name="nome-soggetto-referente" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  37.  *          &lt;element name="versione" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0" maxOccurs="1" default="1"/&gt;
  38.  *          &lt;element name="servizio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="1" maxOccurs="1"/&gt;
  39.  *      &lt;/sequence&gt;
  40.  * &lt;/complexType&gt;
  41.  * </pre>
  42.  *
  43.  * @version $Rev$, $Date$
  44.  *
  45.  * @author Poli Andrea (poli@link.it)
  46.  * @author $Author$
  47.  * */

  48. @XmlAccessorType(XmlAccessType.FIELD)
  49. @XmlType(name = "id-configurazione-servizio",
  50.   propOrder = {
  51.     "accordo",
  52.     "tipoSoggettoReferente",
  53.     "nomeSoggettoReferente",
  54.     "versione",
  55.     "servizio"
  56.   }
  57. )

  58. @XmlRootElement(name = "id-configurazione-servizio")

  59. public class IdConfigurazioneServizio extends org.openspcoop2.utils.beans.BaseBeanWithId implements Serializable , Cloneable {
  60.   public IdConfigurazioneServizio() {
  61.     super();
  62.   }

  63.   public java.lang.String getAccordo() {
  64.     return this.accordo;
  65.   }

  66.   public void setAccordo(java.lang.String accordo) {
  67.     this.accordo = accordo;
  68.   }

  69.   public java.lang.String getTipoSoggettoReferente() {
  70.     return this.tipoSoggettoReferente;
  71.   }

  72.   public void setTipoSoggettoReferente(java.lang.String tipoSoggettoReferente) {
  73.     this.tipoSoggettoReferente = tipoSoggettoReferente;
  74.   }

  75.   public java.lang.String getNomeSoggettoReferente() {
  76.     return this.nomeSoggettoReferente;
  77.   }

  78.   public void setNomeSoggettoReferente(java.lang.String nomeSoggettoReferente) {
  79.     this.nomeSoggettoReferente = nomeSoggettoReferente;
  80.   }

  81.   public java.lang.Integer getVersione() {
  82.     return this.versione;
  83.   }

  84.   public void setVersione(java.lang.Integer versione) {
  85.     this.versione = versione;
  86.   }

  87.   public java.lang.String getServizio() {
  88.     return this.servizio;
  89.   }

  90.   public void setServizio(java.lang.String servizio) {
  91.     this.servizio = servizio;
  92.   }

  93.   private static final long serialVersionUID = 1L;



  94.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  95.   @XmlElement(name="accordo",required=true,nillable=false)
  96.   protected java.lang.String accordo;

  97.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  98.   @XmlElement(name="tipo-soggetto-referente",required=false,nillable=false)
  99.   protected java.lang.String tipoSoggettoReferente;

  100.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  101.   @XmlElement(name="nome-soggetto-referente",required=false,nillable=false)
  102.   protected java.lang.String nomeSoggettoReferente;

  103.   @javax.xml.bind.annotation.XmlSchemaType(name="unsignedInt")
  104.   @XmlElement(name="versione",required=false,nillable=false,defaultValue="1")
  105.   protected java.lang.Integer versione = java.lang.Integer.valueOf("1");

  106.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  107.   @XmlElement(name="servizio",required=true,nillable=false)
  108.   protected java.lang.String servizio;

  109. }