Functionality.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.manifest;

  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.XmlRootElement;
  25. import javax.xml.bind.annotation.XmlType;
  26. import java.io.Serializable;


  27. /** <p>Java class for Functionality complex type.
  28.  *
  29.  * <p>The following schema fragment specifies the expected content contained within this class.
  30.  *
  31.  * <pre>
  32.  * &lt;complexType name="Functionality"&gt;
  33.  *      &lt;attribute name="duplicateFilter" type="{http://www.w3.org/2001/XMLSchema}boolean" use="optional" default="false"/&gt;
  34.  *      &lt;attribute name="acknowledgement" type="{http://www.w3.org/2001/XMLSchema}boolean" use="optional" default="false"/&gt;
  35.  *      &lt;attribute name="conversationIdentifier" type="{http://www.w3.org/2001/XMLSchema}boolean" use="optional" default="false"/&gt;
  36.  *      &lt;attribute name="referenceToRequestIdentifier" type="{http://www.w3.org/2001/XMLSchema}boolean" use="optional" default="false"/&gt;
  37.  *      &lt;attribute name="deliveryOrder" type="{http://www.w3.org/2001/XMLSchema}boolean" use="optional" default="false"/&gt;
  38.  *      &lt;attribute name="expiration" type="{http://www.w3.org/2001/XMLSchema}boolean" use="optional" default="false"/&gt;
  39.  *      &lt;attribute name="manifestAttachments" type="{http://www.w3.org/2001/XMLSchema}boolean" use="optional" default="false"/&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 = "Functionality")

  50. @XmlRootElement(name = "Functionality")

  51. public class Functionality extends org.openspcoop2.utils.beans.BaseBean implements Serializable , Cloneable {
  52.   public Functionality() {
  53.     super();
  54.   }

  55.   public boolean isDuplicateFilter() {
  56.     return this.duplicateFilter;
  57.   }

  58.   public boolean getDuplicateFilter() {
  59.     return this.duplicateFilter;
  60.   }

  61.   public void setDuplicateFilter(boolean duplicateFilter) {
  62.     this.duplicateFilter = duplicateFilter;
  63.   }

  64.   public boolean isAcknowledgement() {
  65.     return this.acknowledgement;
  66.   }

  67.   public boolean getAcknowledgement() {
  68.     return this.acknowledgement;
  69.   }

  70.   public void setAcknowledgement(boolean acknowledgement) {
  71.     this.acknowledgement = acknowledgement;
  72.   }

  73.   public boolean isConversationIdentifier() {
  74.     return this.conversationIdentifier;
  75.   }

  76.   public boolean getConversationIdentifier() {
  77.     return this.conversationIdentifier;
  78.   }

  79.   public void setConversationIdentifier(boolean conversationIdentifier) {
  80.     this.conversationIdentifier = conversationIdentifier;
  81.   }

  82.   public boolean isReferenceToRequestIdentifier() {
  83.     return this.referenceToRequestIdentifier;
  84.   }

  85.   public boolean getReferenceToRequestIdentifier() {
  86.     return this.referenceToRequestIdentifier;
  87.   }

  88.   public void setReferenceToRequestIdentifier(boolean referenceToRequestIdentifier) {
  89.     this.referenceToRequestIdentifier = referenceToRequestIdentifier;
  90.   }

  91.   public boolean isDeliveryOrder() {
  92.     return this.deliveryOrder;
  93.   }

  94.   public boolean getDeliveryOrder() {
  95.     return this.deliveryOrder;
  96.   }

  97.   public void setDeliveryOrder(boolean deliveryOrder) {
  98.     this.deliveryOrder = deliveryOrder;
  99.   }

  100.   public boolean isExpiration() {
  101.     return this.expiration;
  102.   }

  103.   public boolean getExpiration() {
  104.     return this.expiration;
  105.   }

  106.   public void setExpiration(boolean expiration) {
  107.     this.expiration = expiration;
  108.   }

  109.   public boolean isManifestAttachments() {
  110.     return this.manifestAttachments;
  111.   }

  112.   public boolean getManifestAttachments() {
  113.     return this.manifestAttachments;
  114.   }

  115.   public void setManifestAttachments(boolean manifestAttachments) {
  116.     this.manifestAttachments = manifestAttachments;
  117.   }

  118.   private static final long serialVersionUID = 1L;



  119.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  120.   @XmlAttribute(name="duplicateFilter",required=false)
  121.   protected boolean duplicateFilter = false;

  122.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  123.   @XmlAttribute(name="acknowledgement",required=false)
  124.   protected boolean acknowledgement = false;

  125.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  126.   @XmlAttribute(name="conversationIdentifier",required=false)
  127.   protected boolean conversationIdentifier = false;

  128.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  129.   @XmlAttribute(name="referenceToRequestIdentifier",required=false)
  130.   protected boolean referenceToRequestIdentifier = false;

  131.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  132.   @XmlAttribute(name="deliveryOrder",required=false)
  133.   protected boolean deliveryOrder = false;

  134.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  135.   @XmlAttribute(name="expiration",required=false)
  136.   protected boolean expiration = false;

  137.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  138.   @XmlAttribute(name="manifestAttachments",required=false)
  139.   protected boolean manifestAttachments = false;

  140. }