ProtocolFiltroRicercaSoggetti.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 java.util.Map;

  22. import org.openspcoop2.protocol.sdk.properties.ProtocolProperties;

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

  31.     private String tipo;
  32.     private String nome;
  33.     private String nomePdd;
  34.     private ProtocolProperties protocolProperties;
  35.     private Map<String, String> proprieta;
  36.    
  37.     public String getTipo() {
  38.         return this.tipo;
  39.     }
  40.     public void setTipo(String tipo) {
  41.         this.tipo = tipo;
  42.     }
  43.     public String getNome() {
  44.         return this.nome;
  45.     }
  46.     public void setNome(String nome) {
  47.         this.nome = nome;
  48.     }
  49.     public String getNomePdd() {
  50.         return this.nomePdd;
  51.     }
  52.     public void setNomePdd(String nomePdd) {
  53.         this.nomePdd = nomePdd;
  54.     }
  55.     public ProtocolProperties getProtocolProperties() {
  56.         return this.protocolProperties;
  57.     }
  58.     public void setProtocolProperties(ProtocolProperties protocolProperties) {
  59.         this.protocolProperties = protocolProperties;
  60.     }
  61.     public Map<String, String> getProprieta() {
  62.         return this.proprieta;
  63.     }
  64.     public void setProprieta(Map<String, String> proprieta) {
  65.         this.proprieta = proprieta;
  66.     }
  67. }