AccordoServizioParteComuneServizioCompostoServizioComponente.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;

  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 accordo-servizio-parte-comune-servizio-composto-servizio-componente complex type.
  28.  *
  29.  * <p>The following schema fragment specifies the expected content contained within this class.
  30.  *
  31.  * <pre>
  32.  * &lt;complexType name="accordo-servizio-parte-comune-servizio-composto-servizio-componente"&gt;
  33.  *      &lt;attribute name="id-servizio-componente" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" use="optional"/&gt;
  34.  *      &lt;attribute name="tipo-soggetto" type="{http://www.w3.org/2001/XMLSchema}string" use="required"/&gt;
  35.  *      &lt;attribute name="nome-soggetto" type="{http://www.w3.org/2001/XMLSchema}string" use="required"/&gt;
  36.  *      &lt;attribute name="tipo" type="{http://www.w3.org/2001/XMLSchema}string" use="required"/&gt;
  37.  *      &lt;attribute name="nome" type="{http://www.w3.org/2001/XMLSchema}string" use="required"/&gt;
  38.  *      &lt;attribute name="versione" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" use="optional" default="1"/&gt;
  39.  *      &lt;attribute name="azione" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/&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 = "accordo-servizio-parte-comune-servizio-composto-servizio-componente")

  50. @XmlRootElement(name = "accordo-servizio-parte-comune-servizio-composto-servizio-componente")

  51. public class AccordoServizioParteComuneServizioCompostoServizioComponente extends org.openspcoop2.utils.beans.BaseBeanWithId implements Serializable , Cloneable {
  52.   public AccordoServizioParteComuneServizioCompostoServizioComponente() {
  53.     super();
  54.   }

  55.   public java.lang.Long getIdServizioComponente() {
  56.     return this.idServizioComponente;
  57.   }

  58.   public void setIdServizioComponente(java.lang.Long idServizioComponente) {
  59.     this.idServizioComponente = idServizioComponente;
  60.   }

  61.   public java.lang.String getTipoSoggetto() {
  62.     return this.tipoSoggetto;
  63.   }

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

  67.   public java.lang.String getNomeSoggetto() {
  68.     return this.nomeSoggetto;
  69.   }

  70.   public void setNomeSoggetto(java.lang.String nomeSoggetto) {
  71.     this.nomeSoggetto = nomeSoggetto;
  72.   }

  73.   public java.lang.String getTipo() {
  74.     return this.tipo;
  75.   }

  76.   public void setTipo(java.lang.String tipo) {
  77.     this.tipo = tipo;
  78.   }

  79.   public java.lang.String getNome() {
  80.     return this.nome;
  81.   }

  82.   public void setNome(java.lang.String nome) {
  83.     this.nome = nome;
  84.   }

  85.   public java.lang.Integer getVersione() {
  86.     return this.versione;
  87.   }

  88.   public void setVersione(java.lang.Integer versione) {
  89.     this.versione = versione;
  90.   }

  91.   public java.lang.String getAzione() {
  92.     return this.azione;
  93.   }

  94.   public void setAzione(java.lang.String azione) {
  95.     this.azione = azione;
  96.   }

  97.   private static final long serialVersionUID = 1L;



  98.   @javax.xml.bind.annotation.XmlTransient
  99.   protected java.lang.Long idServizioComponente;

  100.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  101.   @XmlAttribute(name="tipo-soggetto",required=true)
  102.   protected java.lang.String tipoSoggetto;

  103.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  104.   @XmlAttribute(name="nome-soggetto",required=true)
  105.   protected java.lang.String nomeSoggetto;

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

  109.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  110.   @XmlAttribute(name="nome",required=true)
  111.   protected java.lang.String nome;

  112.   @javax.xml.bind.annotation.XmlTransient
  113.   protected java.lang.Integer versione = java.lang.Integer.valueOf("1");

  114.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  115.   @XmlAttribute(name="azione",required=false)
  116.   protected java.lang.String azione;

  117. }