InformazioniStatoPoolThreads.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.pdd.core.jmx;

  21. /**
  22.  * InformazioniStatoPoolThreads
  23.  *
  24.  * @author Poli Andrea (apoli@link.it)
  25.  * @author $Author$
  26.  * @version $Rev$, $Date$
  27.  */
  28. public class InformazioniStatoPoolThreads {

  29.     private String nomeCoda = null;
  30.     private String stato = null;
  31.     private String configurazione = null;
  32.     private String connettoriPrioritari = null;
  33.     private String applicativiPrioritari = null;
  34.    
  35.     public InformazioniStatoPoolThreads(String nomeCoda,String stato,String configurazione,String connettoriPrioritari){
  36.         this.nomeCoda = nomeCoda;
  37.         this.stato = stato;
  38.         this.configurazione = configurazione;
  39.         this.connettoriPrioritari = connettoriPrioritari;
  40.     }
  41.    
  42.     public String getNomeCoda() {
  43.         return this.nomeCoda;
  44.     }

  45.     public void setNomeCoda(String nomeCoda) {
  46.         this.nomeCoda = nomeCoda;
  47.     }

  48.     public String getStato() {
  49.         return this.stato;
  50.     }

  51.     public void setStato(String stato) {
  52.         this.stato = stato;
  53.     }

  54.     public String getConfigurazione() {
  55.         return this.configurazione;
  56.     }

  57.     public void setConfigurazione(String configurazione) {
  58.         this.configurazione = configurazione;
  59.     }

  60.     public String getConnettoriPrioritari() {
  61.         return this.connettoriPrioritari;
  62.     }

  63.     public void setConnettoriPrioritari(String connettoriPrioritari) {
  64.         this.connettoriPrioritari = connettoriPrioritari;
  65.     }
  66.    
  67.     public String getApplicativiPrioritari() {
  68.         return this.applicativiPrioritari;
  69.     }

  70.     public void setApplicativiPrioritari(String applicativiPrioritari) {
  71.         this.applicativiPrioritari = applicativiPrioritari;
  72.     }
  73. }