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

  21. import java.util.Date;

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

  30.     private String idTransazione;
  31.     private String idMessaggio;
  32.     private String servizioApplicativo;
  33.     private boolean sbustamentoSoap;
  34.     private boolean sbustamentoInformazioniProtocollo;
  35.     private String nomePorta;
  36.     private Date oraRegistrazione;
  37.    
  38.     private boolean attesaEsitoTransazioneCapostipite;
  39.     private Date dataPresaInConsegna;
  40.     private String clusterIdPresaInConsegna;
  41.    
  42.     public boolean isAttesaEsitoTransazioneCapostipite() {
  43.         return this.attesaEsitoTransazioneCapostipite;
  44.     }
  45.     public void setAttesaEsitoTransazioneCapostipite(boolean attesaEsitoTransazioneCapostipite) {
  46.         this.attesaEsitoTransazioneCapostipite = attesaEsitoTransazioneCapostipite;
  47.     }
  48.     public Date getDataPresaInConsegna() {
  49.         return this.dataPresaInConsegna;
  50.     }
  51.     public void setDataPresaInConsegna(Date dataPresaInConsegna) {
  52.         this.dataPresaInConsegna = dataPresaInConsegna;
  53.     }
  54.     public String getClusterIdPresaInConsegna() {
  55.         return this.clusterIdPresaInConsegna;
  56.     }
  57.     public void setClusterIdPresaInConsegna(String clusterIdPresaInConsegna) {
  58.         this.clusterIdPresaInConsegna = clusterIdPresaInConsegna;
  59.     }

  60.     public String getNomePorta() {
  61.         return this.nomePorta;
  62.     }
  63.     public void setNomePorta(String nomePorta) {
  64.         this.nomePorta = nomePorta;
  65.     }
  66.     public String getIdTransazione() {
  67.         return this.idTransazione;
  68.     }
  69.     public void setIdTransazione(String idTransazione) {
  70.         this.idTransazione = idTransazione;
  71.     }
  72.     public String getIdMessaggio() {
  73.         return this.idMessaggio;
  74.     }
  75.     public void setIdMessaggio(String idMessaggio) {
  76.         this.idMessaggio = idMessaggio;
  77.     }
  78.     public String getServizioApplicativo() {
  79.         return this.servizioApplicativo;
  80.     }
  81.     public void setServizioApplicativo(String servizioApplicativo) {
  82.         this.servizioApplicativo = servizioApplicativo;
  83.     }
  84.     public boolean isSbustamentoSoap() {
  85.         return this.sbustamentoSoap;
  86.     }
  87.     public void setSbustamentoSoap(boolean sbustamentoSoap) {
  88.         this.sbustamentoSoap = sbustamentoSoap;
  89.     }
  90.     public boolean isSbustamentoInformazioniProtocollo() {
  91.         return this.sbustamentoInformazioniProtocollo;
  92.     }
  93.     public void setSbustamentoInformazioniProtocollo(
  94.             boolean sbustamentoInformazioniProtocollo) {
  95.         this.sbustamentoInformazioniProtocollo = sbustamentoInformazioniProtocollo;
  96.     }
  97.     public Date getOraRegistrazione() {
  98.         return this.oraRegistrazione;
  99.     }
  100.     public void setOraRegistrazione(Date oraRegistrazione) {
  101.         this.oraRegistrazione = oraRegistrazione;
  102.     }
  103. }