ProtocolFiltroRicercaAccordi.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.sdk.registry;

  21. import org.openspcoop2.core.id.IDGruppo;
  22. import org.openspcoop2.core.id.IDSoggetto;
  23. import org.openspcoop2.core.registry.constants.ServiceBinding;
  24. import org.openspcoop2.protocol.sdk.properties.ProtocolProperties;

  25. /**
  26.  *  FiltroRicercaAccordi
  27.  *
  28.  * @author Poli Andrea (apoli@link.it)
  29.  * @author $Author$
  30.  * @version $Rev$, $Date$
  31.  */
  32. public class ProtocolFiltroRicercaAccordi {

  33.     private String nome;
  34.     private Integer versione;
  35.     private IDSoggetto soggetto;
  36.     private IDGruppo idGruppo;
  37.     private ServiceBinding serviceBinding;
  38.     private ProtocolProperties protocolProperties;

  39.     private Boolean escludiServiziComposti;
  40.     private Boolean escludiServiziNonComposti;
  41.    
  42.     public String getNome() {
  43.         return this.nome;
  44.     }
  45.     public void setNome(String nome) {
  46.         this.nome = nome;
  47.     }
  48.     public Integer getVersione() {
  49.         return this.versione;
  50.     }
  51.     public void setVersione(Integer versione) {
  52.         this.versione = versione;
  53.     }
  54.     public IDSoggetto getSoggetto() {
  55.         return this.soggetto;
  56.     }
  57.     public void setSoggetto(IDSoggetto soggetto) {
  58.         this.soggetto = soggetto;
  59.     }
  60.     public ServiceBinding getServiceBinding() {
  61.         return this.serviceBinding;
  62.     }
  63.     public void setServiceBinding(ServiceBinding serviceBinding) {
  64.         this.serviceBinding = serviceBinding;
  65.     }
  66.     public IDGruppo getIdGruppo() {
  67.         return this.idGruppo;
  68.     }
  69.     public void setIdGruppo(IDGruppo idGruppo) {
  70.         this.idGruppo = idGruppo;
  71.     }
  72.     public ProtocolProperties getProtocolProperties() {
  73.         return this.protocolProperties;
  74.     }
  75.     public void setProtocolProperties(ProtocolProperties protocolProperties) {
  76.         this.protocolProperties = protocolProperties;
  77.     }
  78.    
  79.     public Boolean getEscludiServiziComposti() {
  80.         return this.escludiServiziComposti;
  81.     }
  82.     public void setEscludiServiziComposti(Boolean escludiServiziComposti) {
  83.         this.escludiServiziComposti = escludiServiziComposti;
  84.     }
  85.     public Boolean getEscludiServiziNonComposti() {
  86.         return this.escludiServiziNonComposti;
  87.     }
  88.     public void setEscludiServiziNonComposti(Boolean escludiServiziNonComposti) {
  89.         this.escludiServiziNonComposti = escludiServiziNonComposti;
  90.     }
  91. }