ProtocolFiltroRicercaGruppi.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.Date;
  22. import java.util.List;

  23. import org.openspcoop2.core.registry.constants.ServiceBinding;


  24. /**
  25.  * Permette il filtro di ricerca attraverso i driver che implementano l'interfaccia 'get'
  26.  *
  27.  *
  28.  * @author Poli Andrea (apoli@link.it)
  29.  * @author $Author$
  30.  * @version $Rev$, $Date$
  31.  */

  32. public class ProtocolFiltroRicercaGruppi {

  33.     /** Intervallo inferiore */
  34.     private Date minDate;
  35.    
  36.     /** Intervallo superiore */
  37.     private Date maxDate;
  38.    
  39.     /** Nome */
  40.     private String nome;
  41.    
  42.     /** Tipo */
  43.     private String tipo;
  44.    
  45.     /** ServiceBinding */
  46.     private ServiceBinding serviceBinding;
  47.     private boolean ordinaDataRegistrazione = false;

  48.     private String protocollo;
  49.     private List<String> protocolli;
  50.    
  51.     public Date getMinDate() {
  52.         return this.minDate;
  53.     }
  54.     public void setMinDate(Date minDate) {
  55.         this.minDate = minDate;
  56.     }
  57.     public Date getMaxDate() {
  58.         return this.maxDate;
  59.     }
  60.     public void setMaxDate(Date maxDate) {
  61.         this.maxDate = maxDate;
  62.     }
  63.     public String getNome() {
  64.         return this.nome;
  65.     }
  66.     public void setNome(String nome) {
  67.         this.nome = nome;
  68.     }
  69.     public String getTipo() {
  70.         return this.tipo;
  71.     }
  72.     public void setTipo(String tipo) {
  73.         this.tipo = tipo;
  74.     }
  75.     public ServiceBinding getServiceBinding() {
  76.         return this.serviceBinding;
  77.     }
  78.     public void setServiceBinding(ServiceBinding serviceBinding) {
  79.         this.serviceBinding = serviceBinding;
  80.     }
  81.     public boolean isOrdinaDataRegistrazione() {
  82.         return this.ordinaDataRegistrazione;
  83.     }
  84.     public void setOrdinaDataRegistrazione(boolean ordinaDataRegistrazione) {
  85.         this.ordinaDataRegistrazione = ordinaDataRegistrazione;
  86.     }
  87.     public String getProtocollo() {
  88.         return this.protocollo;
  89.     }
  90.     public void setProtocollo(String protocollo) {
  91.         this.protocollo = protocollo;
  92.     }
  93.     public List<String> getProtocolli() {
  94.         return this.protocolli;
  95.     }
  96.     public void setProtocolli(List<String> protocolli) {
  97.         this.protocolli = protocolli;
  98.     }
  99.    
  100. }