TrasformazioneSoapRisposta.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 trasformazione-soap-risposta complex type.
  29.  *
  30.  * <p>The following schema fragment specifies the expected content contained within this class.
  31.  *
  32.  * <pre>
  33.  * &lt;complexType name="trasformazione-soap-risposta"&gt;
  34.  *      &lt;sequence&gt;
  35.  *          &lt;element name="envelope-body-conversione-template" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0" maxOccurs="1"/&gt;
  36.  *      &lt;/sequence&gt;
  37.  *      &lt;attribute name="envelope" type="{http://www.w3.org/2001/XMLSchema}boolean" use="optional" default="true"/&gt;
  38.  *      &lt;attribute name="envelope-as-attachment" type="{http://www.w3.org/2001/XMLSchema}boolean" use="optional" default="false"/&gt;
  39.  *      &lt;attribute name="envelope-body-conversione-tipo" 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 = "trasformazione-soap-risposta",
  50.   propOrder = {
  51.     "envelopeBodyConversioneTemplate"
  52.   }
  53. )

  54. @XmlRootElement(name = "trasformazione-soap-risposta")

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

  59.   public byte[] getEnvelopeBodyConversioneTemplate() {
  60.     return this.envelopeBodyConversioneTemplate;
  61.   }

  62.   public void setEnvelopeBodyConversioneTemplate(byte[] envelopeBodyConversioneTemplate) {
  63.     this.envelopeBodyConversioneTemplate = envelopeBodyConversioneTemplate;
  64.   }

  65.   public boolean isEnvelope() {
  66.     return this.envelope;
  67.   }

  68.   public boolean getEnvelope() {
  69.     return this.envelope;
  70.   }

  71.   public void setEnvelope(boolean envelope) {
  72.     this.envelope = envelope;
  73.   }

  74.   public boolean isEnvelopeAsAttachment() {
  75.     return this.envelopeAsAttachment;
  76.   }

  77.   public boolean getEnvelopeAsAttachment() {
  78.     return this.envelopeAsAttachment;
  79.   }

  80.   public void setEnvelopeAsAttachment(boolean envelopeAsAttachment) {
  81.     this.envelopeAsAttachment = envelopeAsAttachment;
  82.   }

  83.   public java.lang.String getEnvelopeBodyConversioneTipo() {
  84.     return this.envelopeBodyConversioneTipo;
  85.   }

  86.   public void setEnvelopeBodyConversioneTipo(java.lang.String envelopeBodyConversioneTipo) {
  87.     this.envelopeBodyConversioneTipo = envelopeBodyConversioneTipo;
  88.   }

  89.   private static final long serialVersionUID = 1L;



  90.   @javax.xml.bind.annotation.XmlSchemaType(name="base64Binary")
  91.   @XmlElement(name="envelope-body-conversione-template",required=false,nillable=false)
  92.   protected byte[] envelopeBodyConversioneTemplate;

  93.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  94.   @XmlAttribute(name="envelope",required=false)
  95.   protected boolean envelope = true;

  96.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  97.   @XmlAttribute(name="envelope-as-attachment",required=false)
  98.   protected boolean envelopeAsAttachment = false;

  99.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  100.   @XmlAttribute(name="envelope-body-conversione-tipo",required=false)
  101.   protected java.lang.String envelopeBodyConversioneTipo;

  102. }