SoggettoNotExistsBehaviour.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.abstraction;

  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 SoggettoNotExistsBehaviour complex type.
  29.  *
  30.  * <p>The following schema fragment specifies the expected content contained within this class.
  31.  *
  32.  * <pre>
  33.  * &lt;complexType name="SoggettoNotExistsBehaviour"&gt;
  34.  *      &lt;sequence&gt;
  35.  *          &lt;element name="endpoint" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  36.  *          &lt;element name="porta-dominio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  37.  *      &lt;/sequence&gt;
  38.  *      &lt;attribute name="create" type="{http://www.w3.org/2001/XMLSchema}boolean" use="required"/&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 = "SoggettoNotExistsBehaviour",
  49.   propOrder = {
  50.     "endpoint",
  51.     "portaDominio"
  52.   }
  53. )

  54. @XmlRootElement(name = "SoggettoNotExistsBehaviour")

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

  59.   public java.lang.String getEndpoint() {
  60.     return this.endpoint;
  61.   }

  62.   public void setEndpoint(java.lang.String endpoint) {
  63.     this.endpoint = endpoint;
  64.   }

  65.   public java.lang.String getPortaDominio() {
  66.     return this.portaDominio;
  67.   }

  68.   public void setPortaDominio(java.lang.String portaDominio) {
  69.     this.portaDominio = portaDominio;
  70.   }

  71.   public boolean isCreate() {
  72.     return this.create;
  73.   }

  74.   public boolean getCreate() {
  75.     return this.create;
  76.   }

  77.   public void setCreate(boolean create) {
  78.     this.create = create;
  79.   }

  80.   private static final long serialVersionUID = 1L;



  81.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  82.   @XmlElement(name="endpoint",required=false,nillable=false)
  83.   protected java.lang.String endpoint;

  84.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  85.   @XmlElement(name="porta-dominio",required=false,nillable=false)
  86.   protected java.lang.String portaDominio;

  87.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  88.   @XmlAttribute(name="create",required=true)
  89.   protected boolean create;

  90. }