ProtocolFiltroRicercaServizi.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.IDAccordo;
  22. import org.openspcoop2.core.id.IDSoggetto;
  23. import org.openspcoop2.protocol.sdk.properties.ProtocolProperties;

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

  32.     private IDAccordo idAccordoServizioParteComune;
  33.     private String tipoServizio;
  34.     private String nomeServizio;
  35.     private Integer versioneServizio;
  36.     private IDSoggetto soggettoErogatore;
  37.     private String portType;
  38.     private ProtocolProperties protocolPropertiesServizi;

  39.     public IDAccordo getIdAccordoServizioParteComune() {
  40.         return this.idAccordoServizioParteComune;
  41.     }
  42.     public void setIdAccordoServizioParteComune(IDAccordo idAccordoServizioParteComune) {
  43.         this.idAccordoServizioParteComune = idAccordoServizioParteComune;
  44.     }
  45.     public String getTipoServizio() {
  46.         return this.tipoServizio;
  47.     }
  48.     public void setTipoServizio(String tipo) {
  49.         this.tipoServizio = tipo;
  50.     }
  51.     public String getNomeServizio() {
  52.         return this.nomeServizio;
  53.     }
  54.     public void setNomeServizio(String nome) {
  55.         this.nomeServizio = nome;
  56.     }
  57.     public Integer getVersioneServizio() {
  58.         return this.versioneServizio;
  59.     }
  60.     public void setVersioneServizio(Integer versioneServizio) {
  61.         this.versioneServizio = versioneServizio;
  62.     }
  63.     public IDSoggetto getSoggettoErogatore() {
  64.         return this.soggettoErogatore;
  65.     }
  66.     public void setSoggettoErogatore(IDSoggetto soggetto) {
  67.         this.soggettoErogatore = soggetto;
  68.     }
  69.     public String getPortType() {
  70.         return this.portType;
  71.     }
  72.     public void setPortType(String portType) {
  73.         this.portType = portType;
  74.     }
  75.     public ProtocolProperties getProtocolPropertiesServizi() {
  76.         return this.protocolPropertiesServizi;
  77.     }
  78.     public void setProtocolPropertiesServizi(ProtocolProperties protocolProperties) {
  79.         this.protocolPropertiesServizi = protocolProperties;
  80.     }
  81.    
  82. }
  83.