StatisticData.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.monitor.sdk.statistic;

  21. import java.util.Date;

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

  30.     private Date data;
  31.     private String tipoMittente;
  32.     private String mittente;
  33.     private String tipoDestinatario;
  34.     private String destinatario;
  35.     private String tipoServizio;
  36.     private String servizio;
  37.     private Integer versioneServizio;
  38.     private String azione;
  39.     private String servizioApplicativo;
  40.     private String tipoPorta;
  41.     private String idPorta;
  42.     private int esito;
  43.     private String value;
  44.     private long number;
  45.     private long msg_bytes;
  46.    
  47.     public String getValue() {
  48.         return this.value;
  49.     }
  50.     public void setValue(String value) {
  51.         this.value = value;
  52.     }
  53.     public long getNumber() {
  54.         return this.number;
  55.     }
  56.     public void setNumber(long number) {
  57.         this.number = number;
  58.     }
  59.     public long getMsg_bytes() {
  60.         return this.msg_bytes;
  61.     }
  62.     public void setMsg_bytes(long msg_bytes) {
  63.         this.msg_bytes = msg_bytes;
  64.     }
  65.     public Date getData() {
  66.         return this.data;
  67.     }
  68.     public void setData(Date data) {
  69.         this.data = data;
  70.     }
  71.     public String getTipoMittente() {
  72.         return this.tipoMittente;
  73.     }
  74.     public void setTipoMittente(String tipoMittente) {
  75.         this.tipoMittente = tipoMittente;
  76.     }
  77.     public String getMittente() {
  78.         return this.mittente;
  79.     }
  80.     public void setMittente(String mittente) {
  81.         this.mittente = mittente;
  82.     }
  83.     public String getTipoDestinatario() {
  84.         return this.tipoDestinatario;
  85.     }
  86.     public void setTipoDestinatario(String tipoDestinatario) {
  87.         this.tipoDestinatario = tipoDestinatario;
  88.     }
  89.     public String getDestinatario() {
  90.         return this.destinatario;
  91.     }
  92.     public void setDestinatario(String destinatario) {
  93.         this.destinatario = destinatario;
  94.     }
  95.     public String getTipoServizio() {
  96.         return this.tipoServizio;
  97.     }
  98.     public void setTipoServizio(String tipoServizio) {
  99.         this.tipoServizio = tipoServizio;
  100.     }
  101.     public String getServizio() {
  102.         return this.servizio;
  103.     }
  104.     public void setServizio(String servizio) {
  105.         this.servizio = servizio;
  106.     }
  107.     public Integer getVersioneServizio() {
  108.         return this.versioneServizio;
  109.     }
  110.     public void setVersioneServizio(Integer versioneServizio) {
  111.         this.versioneServizio = versioneServizio;
  112.     }
  113.     public String getAzione() {
  114.         return this.azione;
  115.     }
  116.     public void setAzione(String azione) {
  117.         this.azione = azione;
  118.     }
  119.     public String getServizioApplicativo() {
  120.         return this.servizioApplicativo;
  121.     }
  122.     public void setServizioApplicativo(String servizioApplicativo) {
  123.         this.servizioApplicativo = servizioApplicativo;
  124.     }
  125.     public String getTipoPorta() {
  126.         return this.tipoPorta;
  127.     }
  128.     public void setTipoPorta(String tipoPorta) {
  129.         this.tipoPorta = tipoPorta;
  130.     }
  131.     public String getIdPorta() {
  132.         return this.idPorta;
  133.     }
  134.     public void setIdPorta(String idPorta) {
  135.         this.idPorta = idPorta;
  136.     }
  137.     public int getEsito() {
  138.         return this.esito;
  139.     }
  140.     public void setEsito(int esito) {
  141.         this.esito = esito;
  142.     }
  143. }