ProtocolFiltroRicercaScope.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 org.openspcoop2.core.registry.constants.ScopeContesto;

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

  32. public class ProtocolFiltroRicercaScope {

  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.     /** ScopeTipologia */
  46.     private String tipologia;
  47.     /** ScopeContesto */
  48.     private ScopeContesto contesto;
  49.    
  50.     public Date getMinDate() {
  51.         return this.minDate;
  52.     }
  53.     public void setMinDate(Date minDate) {
  54.         this.minDate = minDate;
  55.     }
  56.     public Date getMaxDate() {
  57.         return this.maxDate;
  58.     }
  59.     public void setMaxDate(Date maxDate) {
  60.         this.maxDate = maxDate;
  61.     }
  62.     public String getNome() {
  63.         return this.nome;
  64.     }
  65.     public void setNome(String nome) {
  66.         this.nome = nome;
  67.     }
  68.     public String getTipo() {
  69.         return this.tipo;
  70.     }
  71.     public void setTipo(String tipo) {
  72.         this.tipo = tipo;
  73.     }
  74.     public String getTipologia() {
  75.         return this.tipologia;
  76.     }
  77.     public void setTipologia(String tipologia) {
  78.         this.tipologia = tipologia;
  79.     }
  80.     public ScopeContesto getContesto() {
  81.         return this.contesto;
  82.     }
  83.     public void setContesto(ScopeContesto contesto) {
  84.         this.contesto = contesto;
  85.     }
  86.        
  87.    
  88. }