MessaggioIM.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.services.skeleton;

  21. import java.util.Date;

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

  30.     private boolean authorized;
  31.     private boolean sbustamentoSoap;
  32.     private boolean sbustamentoInformazioniProtocollo;
  33.     private String riferimentoMessaggio;
  34.     private String identificativoRichiesta; // risolto in caso di accesso per riferimentoMessaggio
  35.     private String idTransazione;
  36.     private String servizioApplicativo;
  37.     private Date oraRegistrazione;
  38.     private String nomePorta;
  39.    
  40.    
  41.     public String getNomePorta() {
  42.         return this.nomePorta;
  43.     }

  44.     public void setNomePorta(String nomePorta) {
  45.         this.nomePorta = nomePorta;
  46.     }

  47.     public Date getOraRegistrazione() {
  48.         return this.oraRegistrazione;
  49.     }

  50.     public void setOraRegistrazione(Date oraRegistrazione) {
  51.         this.oraRegistrazione = oraRegistrazione;
  52.     }

  53.     public String getServizioApplicativo() {
  54.         return this.servizioApplicativo;
  55.     }

  56.     public void setServizioApplicativo(String servizioApplicativo) {
  57.         this.servizioApplicativo = servizioApplicativo;
  58.     }

  59.     public String getIdTransazione() {
  60.         return this.idTransazione;
  61.     }

  62.     public void setIdTransazione(String idTransazione) {
  63.         this.idTransazione = idTransazione;
  64.     }

  65.     public String getIdentificativoRichiesta() {
  66.         return this.identificativoRichiesta;
  67.     }

  68.     public void setIdentificativoRichiesta(String identificativoRichiesta) {
  69.         this.identificativoRichiesta = identificativoRichiesta;
  70.     }

  71.     public String getRiferimentoMessaggio() {
  72.         return this.riferimentoMessaggio;
  73.     }

  74.     public void setRiferimentoMessaggio(String riferimentoMessaggio) {
  75.         this.riferimentoMessaggio = riferimentoMessaggio;
  76.     }

  77.     public boolean isSbustamentoInformazioniProtocollo() {
  78.         return this.sbustamentoInformazioniProtocollo;
  79.     }

  80.     public void setSbustamentoInformazioniProtocollo(boolean sbustamentoInformazioniProtocollo) {
  81.         this.sbustamentoInformazioniProtocollo = sbustamentoInformazioniProtocollo;
  82.     }

  83.     public boolean isSbustamentoSoap() {
  84.         return this.sbustamentoSoap;
  85.     }

  86.     public void setSbustamentoSoap(boolean sbustamentoSoap) {
  87.         this.sbustamentoSoap = sbustamentoSoap;
  88.     }

  89.     public boolean isAuthorized() {
  90.         return this.authorized;
  91.     }

  92.     public void setAuthorized(boolean authorized) {
  93.         this.authorized = authorized;
  94.     }
  95.    
  96. }