Wizard.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.protocol.information_missing;

  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 Wizard complex type.
  29.  *
  30.  * <p>The following schema fragment specifies the expected content contained within this class.
  31.  *
  32.  * <pre>
  33.  * &lt;complexType name="Wizard"&gt;
  34.  *      &lt;sequence&gt;
  35.  *          &lt;element name="requisiti" type="{http://www.openspcoop2.org/protocol/information_missing}Requisiti" minOccurs="0" maxOccurs="1"/&gt;
  36.  *      &lt;/sequence&gt;
  37.  *      &lt;attribute name="descrizione" type="{http://www.w3.org/2001/XMLSchema}string" use="required"/&gt;
  38.  *      &lt;attribute name="step" type="{http://www.w3.org/2001/XMLSchema}int" use="optional"/&gt;
  39.  *      &lt;attribute name="step-in-delete" type="{http://www.w3.org/2001/XMLSchema}int" use="optional"/&gt;
  40.  *      &lt;attribute name="intestazione-originale" type="{http://www.w3.org/2001/XMLSchema}boolean" 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 = "Wizard",
  51.   propOrder = {
  52.     "requisiti"
  53.   }
  54. )

  55. @XmlRootElement(name = "Wizard")

  56. public class Wizard extends org.openspcoop2.utils.beans.BaseBean implements Serializable , Cloneable {
  57.   public Wizard() {
  58.     super();
  59.   }

  60.   public Requisiti getRequisiti() {
  61.     return this.requisiti;
  62.   }

  63.   public void setRequisiti(Requisiti requisiti) {
  64.     this.requisiti = requisiti;
  65.   }

  66.   public java.lang.String getDescrizione() {
  67.     return this.descrizione;
  68.   }

  69.   public void setDescrizione(java.lang.String descrizione) {
  70.     this.descrizione = descrizione;
  71.   }

  72.   public int getStep() {
  73.     return this.step;
  74.   }

  75.   public void setStep(int step) {
  76.     this.step = step;
  77.   }

  78.   public int getStepInDelete() {
  79.     return this.stepInDelete;
  80.   }

  81.   public void setStepInDelete(int stepInDelete) {
  82.     this.stepInDelete = stepInDelete;
  83.   }

  84.   public boolean isIntestazioneOriginale() {
  85.     return this.intestazioneOriginale;
  86.   }

  87.   public boolean getIntestazioneOriginale() {
  88.     return this.intestazioneOriginale;
  89.   }

  90.   public void setIntestazioneOriginale(boolean intestazioneOriginale) {
  91.     this.intestazioneOriginale = intestazioneOriginale;
  92.   }

  93.   private static final long serialVersionUID = 1L;



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

  96.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  97.   @XmlAttribute(name="descrizione",required=true)
  98.   protected java.lang.String descrizione;

  99.   @javax.xml.bind.annotation.XmlSchemaType(name="int")
  100.   @XmlAttribute(name="step",required=false)
  101.   protected int step;

  102.   @javax.xml.bind.annotation.XmlSchemaType(name="int")
  103.   @XmlAttribute(name="step-in-delete",required=false)
  104.   protected int stepInDelete;

  105.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  106.   @XmlAttribute(name="intestazione-originale",required=false)
  107.   protected boolean intestazioneOriginale;

  108. }