Proprieta.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 Proprieta complex type.
  29.  *
  30.  * <p>The following schema fragment specifies the expected content contained within this class.
  31.  *
  32.  * <pre>
  33.  * &lt;complexType name="Proprieta"&gt;
  34.  *      &lt;sequence&gt;
  35.  *          &lt;element name="header" type="{http://www.openspcoop2.org/protocol/information_missing}Description" minOccurs="0" maxOccurs="1"/&gt;
  36.  *          &lt;element name="footer" type="{http://www.openspcoop2.org/protocol/information_missing}Description" minOccurs="0" maxOccurs="1"/&gt;
  37.  *      &lt;/sequence&gt;
  38.  *      &lt;attribute name="placeholder" type="{http://www.w3.org/2001/XMLSchema}string" use="required"/&gt;
  39.  *      &lt;attribute name="nome" type="{http://www.w3.org/2001/XMLSchema}string" use="required"/&gt;
  40.  *      &lt;attribute name="default" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/&gt;
  41.  *      &lt;attribute name="use-in-delete" type="{http://www.w3.org/2001/XMLSchema}boolean" use="optional" default="true"/&gt;
  42.  * &lt;/complexType&gt;
  43.  * </pre>
  44.  *
  45.  * @version $Rev$, $Date$
  46.  *
  47.  * @author Poli Andrea (poli@link.it)
  48.  * @author $Author$
  49.  * */

  50. @XmlAccessorType(XmlAccessType.FIELD)
  51. @XmlType(name = "Proprieta",
  52.   propOrder = {
  53.     "header",
  54.     "footer"
  55.   }
  56. )

  57. @XmlRootElement(name = "Proprieta")

  58. public class Proprieta extends org.openspcoop2.utils.beans.BaseBean implements Serializable , Cloneable {
  59.   public Proprieta() {
  60.     super();
  61.   }

  62.   public Description getHeader() {
  63.     return this.header;
  64.   }

  65.   public void setHeader(Description header) {
  66.     this.header = header;
  67.   }

  68.   public Description getFooter() {
  69.     return this.footer;
  70.   }

  71.   public void setFooter(Description footer) {
  72.     this.footer = footer;
  73.   }

  74.   public java.lang.String getPlaceholder() {
  75.     return this.placeholder;
  76.   }

  77.   public void setPlaceholder(java.lang.String placeholder) {
  78.     this.placeholder = placeholder;
  79.   }

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

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

  86.   public java.lang.String getDefault() {
  87.     return this._default;
  88.   }

  89.   public void setDefault(java.lang.String _default) {
  90.     this._default = _default;
  91.   }

  92.   public boolean isUseInDelete() {
  93.     return this.useInDelete;
  94.   }

  95.   public boolean getUseInDelete() {
  96.     return this.useInDelete;
  97.   }

  98.   public void setUseInDelete(boolean useInDelete) {
  99.     this.useInDelete = useInDelete;
  100.   }

  101.   private static final long serialVersionUID = 1L;



  102.   @XmlElement(name="header",required=false,nillable=false)
  103.   protected Description header;

  104.   @XmlElement(name="footer",required=false,nillable=false)
  105.   protected Description footer;

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

  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.XmlSchemaType(name="string")
  113.   @XmlAttribute(name="default",required=false)
  114.   protected java.lang.String _default;

  115.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  116.   @XmlAttribute(name="use-in-delete",required=false)
  117.   protected boolean useInDelete = true;

  118. }