ProtocolFiltroRicercaRuoli.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.RuoloContesto;
  23. import org.openspcoop2.core.registry.constants.RuoloTipologia;

  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 Nardi Lorenzo (nardi@link.it)
  30.  * @author $Author$
  31.  * @version $Rev$, $Date$
  32.  */

  33. public class ProtocolFiltroRicercaRuoli {

  34.     /** Intervallo inferiore */
  35.     private Date minDate;
  36.    
  37.     /** Intervallo superiore */
  38.     private Date maxDate;
  39.    
  40.     /** Nome */
  41.     private String nome;
  42.    
  43.     /** Tipo */
  44.     private String tipo;
  45.    
  46.     /** RuoloTipologia */
  47.     private RuoloTipologia tipologia;
  48.     /** RuoloContesto */
  49.     private RuoloContesto contesto;
  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 RuoloTipologia getTipologia() {
  76.         return this.tipologia;
  77.     }
  78.     public void setTipologia(RuoloTipologia tipologia) {
  79.         this.tipologia = tipologia;
  80.     }
  81.     public RuoloContesto getContesto() {
  82.         return this.contesto;
  83.     }
  84.     public void setContesto(RuoloContesto contesto) {
  85.         this.contesto = contesto;
  86.     }
  87.        
  88.    
  89. }