ConfigurazioneTracciamentoPorta.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.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 configurazione-tracciamento-porta complex type.
  29.  *
  30.  * <p>The following schema fragment specifies the expected content contained within this class.
  31.  *
  32.  * <pre>
  33.  * &lt;complexType name="configurazione-tracciamento-porta"&gt;
  34.  *      &lt;sequence&gt;
  35.  *          &lt;element name="database" type="{http://www.openspcoop2.org/core/config}tracciamento-configurazione" minOccurs="0" maxOccurs="1"/&gt;
  36.  *          &lt;element name="filetrace" type="{http://www.openspcoop2.org/core/config}tracciamento-configurazione" minOccurs="0" maxOccurs="1"/&gt;
  37.  *          &lt;element name="filetrace-config" type="{http://www.openspcoop2.org/core/config}tracciamento-configurazione-filetrace" minOccurs="0" maxOccurs="1"/&gt;
  38.  *          &lt;element name="transazioni" type="{http://www.openspcoop2.org/core/config}transazioni" minOccurs="0" maxOccurs="1"/&gt;
  39.  *      &lt;/sequence&gt;
  40.  *      &lt;attribute name="esiti" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/&gt;
  41.  * &lt;/complexType&gt;
  42.  * </pre>
  43.  *
  44.  * @version $Rev$, $Date$
  45.  *
  46.  * @author Poli Andrea (poli@link.it)
  47.  * @author $Author$
  48.  * */

  49. @XmlAccessorType(XmlAccessType.FIELD)
  50. @XmlType(name = "configurazione-tracciamento-porta",
  51.   propOrder = {
  52.     "database",
  53.     "filetrace",
  54.     "filetraceConfig",
  55.     "transazioni"
  56.   }
  57. )

  58. @XmlRootElement(name = "configurazione-tracciamento-porta")

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

  63.   public TracciamentoConfigurazione getDatabase() {
  64.     return this.database;
  65.   }

  66.   public void setDatabase(TracciamentoConfigurazione database) {
  67.     this.database = database;
  68.   }

  69.   public TracciamentoConfigurazione getFiletrace() {
  70.     return this.filetrace;
  71.   }

  72.   public void setFiletrace(TracciamentoConfigurazione filetrace) {
  73.     this.filetrace = filetrace;
  74.   }

  75.   public TracciamentoConfigurazioneFiletrace getFiletraceConfig() {
  76.     return this.filetraceConfig;
  77.   }

  78.   public void setFiletraceConfig(TracciamentoConfigurazioneFiletrace filetraceConfig) {
  79.     this.filetraceConfig = filetraceConfig;
  80.   }

  81.   public Transazioni getTransazioni() {
  82.     return this.transazioni;
  83.   }

  84.   public void setTransazioni(Transazioni transazioni) {
  85.     this.transazioni = transazioni;
  86.   }

  87.   public java.lang.String getEsiti() {
  88.     return this.esiti;
  89.   }

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

  93.   private static final long serialVersionUID = 1L;



  94.   @XmlElement(name="database",required=false,nillable=false)
  95.   protected TracciamentoConfigurazione database;

  96.   @XmlElement(name="filetrace",required=false,nillable=false)
  97.   protected TracciamentoConfigurazione filetrace;

  98.   @XmlElement(name="filetrace-config",required=false,nillable=false)
  99.   protected TracciamentoConfigurazioneFiletrace filetraceConfig;

  100.   @XmlElement(name="transazioni",required=false,nillable=false)
  101.   protected Transazioni transazioni;

  102.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  103.   @XmlAttribute(name="esiti",required=false)
  104.   protected java.lang.String esiti;

  105. }