ProfiloTrasmissione.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.tracciamento;

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

  47. @XmlAccessorType(XmlAccessType.FIELD)
  48. @XmlType(name = "profilo-trasmissione",
  49.   propOrder = {
  50.     "inoltro"
  51.   }
  52. )

  53. @XmlRootElement(name = "profilo-trasmissione")

  54. public class ProfiloTrasmissione extends org.openspcoop2.utils.beans.BaseBeanWithId implements Serializable , Cloneable {
  55.   public ProfiloTrasmissione() {
  56.     super();
  57.   }

  58.   public Inoltro getInoltro() {
  59.     return this.inoltro;
  60.   }

  61.   public void setInoltro(Inoltro inoltro) {
  62.     this.inoltro = inoltro;
  63.   }

  64.   public boolean isConfermaRicezione() {
  65.     return this.confermaRicezione;
  66.   }

  67.   public boolean getConfermaRicezione() {
  68.     return this.confermaRicezione;
  69.   }

  70.   public void setConfermaRicezione(boolean confermaRicezione) {
  71.     this.confermaRicezione = confermaRicezione;
  72.   }

  73.   public java.lang.Integer getSequenza() {
  74.     return this.sequenza;
  75.   }

  76.   public void setSequenza(java.lang.Integer sequenza) {
  77.     this.sequenza = sequenza;
  78.   }

  79.   private static final long serialVersionUID = 1L;



  80.   @XmlElement(name="inoltro",required=false,nillable=false)
  81.   protected Inoltro inoltro;

  82.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  83.   @XmlAttribute(name="conferma-ricezione",required=false)
  84.   protected boolean confermaRicezione = false;

  85.   @javax.xml.bind.annotation.XmlSchemaType(name="integer")
  86.   @XmlAttribute(name="sequenza",required=false)
  87.   protected java.lang.Integer sequenza;

  88. }