ConfigurazionePdD.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;

  21. import java.io.Serializable;

  22. import org.slf4j.Logger;
  23. import org.openspcoop2.utils.TipiDatabase;
  24. import org.openspcoop2.utils.resources.Loader;

  25. /**
  26.  * ConfigurazionePdD
  27.  *
  28.  *
  29.  * @author Poli Andrea (apoli@link.it)
  30.  * @author $Author$
  31.  * @version $Rev$, $Date$
  32.  */
  33. public class ConfigurazionePdD implements Serializable {

  34.     /**
  35.      *
  36.      */
  37.     private static final long serialVersionUID = 1L;
  38.    
  39.     private long attesaAttivaJDBC;
  40.     private int checkIntervalJDBC;
  41.     private transient Loader loader;
  42.     private transient Logger log;
  43.     private String configurationDir;
  44.     private TipiDatabase tipoDatabase;
  45.    
  46.     public TipiDatabase getTipoDatabase() {
  47.         return this.tipoDatabase;
  48.     }
  49.     public void setTipoDatabase(TipiDatabase tipoDatabase) {
  50.         this.tipoDatabase = tipoDatabase;
  51.     }
  52.     public String getConfigurationDir() {
  53.         return this.configurationDir;
  54.     }
  55.     public void setConfigurationDir(String configurationDir) {
  56.         this.configurationDir = configurationDir;
  57.     }
  58.     public long getAttesaAttivaJDBC() {
  59.         return this.attesaAttivaJDBC;
  60.     }
  61.     public void setAttesaAttivaJDBC(long attesaAttivaJDBC) {
  62.         this.attesaAttivaJDBC = attesaAttivaJDBC;
  63.     }
  64.     public int getCheckIntervalJDBC() {
  65.         return this.checkIntervalJDBC;
  66.     }
  67.     public void setCheckIntervalJDBC(int checkIntervalJDBC) {
  68.         this.checkIntervalJDBC = checkIntervalJDBC;
  69.     }
  70.     public Loader getLoader() {
  71.         return this.loader;
  72.     }
  73.     public void setLoader(Loader loader) {
  74.         this.loader = loader;
  75.     }
  76.     public Logger getLog() {
  77.         return this.log;
  78.     }
  79.     public void setLog(Logger log) {
  80.         this.log = log;
  81.     }
  82.    
  83. }