StatoConsegnaAsincrona.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.monitor.driver;

  21. import java.util.Date;

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

  32.     protected static final String ALIAS_NOW = "tempoAttuale";
  33.     protected static final String ALIAS_SERVIZIO_APPLICATIVO = "nomeSA";
  34.    
  35.     protected static final String ALIAS_IN_CODA = "inCoda";
  36.     protected static final String ALIAS_IN_CODA_VECCHIO = "vecchioInCoda";
  37.     protected static final String ALIAS_IN_CODA_RECENTE = "recenteInCoda";
  38.    
  39.     protected static final String ALIAS_IN_RICONSEGNA = "inRiconsegna";
  40.     protected static final String ALIAS_IN_RICONSEGNA_VECCHIO = "vecchioInRiconsegna";
  41.     protected static final String ALIAS_IN_RICONSEGNA_RECENTE = "recenteInRiconsegna";
  42.    
  43.     protected static final String ALIAS_IN_MESSAGE_BOX = "inMessageBox";
  44.     protected static final String ALIAS_IN_MESSAGE_BOX_VECCHIO = "vecchioInMessageBox";
  45.     protected static final String ALIAS_IN_MESSAGE_BOX_RECENTE = "recenteInMessageBox";
  46.    
  47.     private Date now;
  48.     private String servizioApplicativo;
  49.    
  50.     private long inCoda;
  51.     private Date vecchioInCoda;
  52.     private Date recenteInCoda;
  53.    
  54.     private long inRiconsegna;
  55.     private Date vecchioInRiconsegna;
  56.     private Date recenteInRiconsegna;
  57.    
  58.     private long inMessageBox;
  59.     private Date vecchioInMessageBox;
  60.     private Date recenteInMessageBox;
  61.    
  62.     public Date getNow() {
  63.         return this.now;
  64.     }
  65.     public void setNow(Date now) {
  66.         this.now = now;
  67.     }
  68.     public String getServizioApplicativo() {
  69.         return this.servizioApplicativo;
  70.     }
  71.     public void setServizioApplicativo(String servizioApplicativo) {
  72.         this.servizioApplicativo = servizioApplicativo;
  73.     }
  74.     public long getInCoda() {
  75.         return this.inCoda;
  76.     }
  77.     public void setInCoda(long inCoda) {
  78.         this.inCoda = inCoda;
  79.     }
  80.     public Date getVecchioInCoda() {
  81.         return this.vecchioInCoda;
  82.     }
  83.     public void setVecchioInCoda(Date vecchioInCoda) {
  84.         this.vecchioInCoda = vecchioInCoda;
  85.     }
  86.     public Date getRecenteInCoda() {
  87.         return this.recenteInCoda;
  88.     }
  89.     public void setRecenteInCoda(Date recenteInCoda) {
  90.         this.recenteInCoda = recenteInCoda;
  91.     }
  92.     public long getInRiconsegna() {
  93.         return this.inRiconsegna;
  94.     }
  95.     public void setInRiconsegna(long inRiconsegna) {
  96.         this.inRiconsegna = inRiconsegna;
  97.     }
  98.     public Date getVecchioInRiconsegna() {
  99.         return this.vecchioInRiconsegna;
  100.     }
  101.     public void setVecchioInRiconsegna(Date vecchioInRiconsegna) {
  102.         this.vecchioInRiconsegna = vecchioInRiconsegna;
  103.     }
  104.     public Date getRecenteInRiconsegna() {
  105.         return this.recenteInRiconsegna;
  106.     }
  107.     public void setRecenteInRiconsegna(Date recenteInRiconsegna) {
  108.         this.recenteInRiconsegna = recenteInRiconsegna;
  109.     }
  110.     public long getInMessageBox() {
  111.         return this.inMessageBox;
  112.     }
  113.     public void setInMessageBox(long inMessageBox) {
  114.         this.inMessageBox = inMessageBox;
  115.     }
  116.     public Date getVecchioInMessageBox() {
  117.         return this.vecchioInMessageBox;
  118.     }
  119.     public void setVecchioInMessageBox(Date vecchioInMessageBox) {
  120.         this.vecchioInMessageBox = vecchioInMessageBox;
  121.     }
  122.     public Date getRecenteInMessageBox() {
  123.         return this.recenteInMessageBox;
  124.     }
  125.     public void setRecenteInMessageBox(Date recenteInMessageBox) {
  126.         this.recenteInMessageBox = recenteInMessageBox;
  127.     }
  128.    
  129. }