RicezioneBusteParametriGestioneBustaErrore.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.core;

  21. import org.slf4j.Logger;
  22. import org.openspcoop2.core.id.IDSoggetto;
  23. import org.openspcoop2.pdd.config.OpenSPCoop2Properties;
  24. import org.openspcoop2.pdd.core.state.IOpenSPCoopState;
  25. import org.openspcoop2.pdd.logger.MsgDiagnostico;
  26. import org.openspcoop2.protocol.sdk.Busta;

  27. /**
  28.  * Informazioni per la gestione della risposta inviata come errore
  29.  *
  30.  * @author Poli Andrea (apoli@link.it)
  31.  * @author $Author$
  32.  * @version $Rev$, $Date$
  33.  */

  34. public class RicezioneBusteParametriGestioneBustaErrore {

  35.     private Busta busta;
  36.     private IOpenSPCoopState openspcoop;
  37.     private IDSoggetto identitaPdD;
  38.     private OpenSPCoop2Properties propertiesReader;
  39.     private MsgDiagnostico msgDiag;
  40.     private Logger logCore;
  41.     private String profiloGestione;
  42.     private String correlazioneApplicativa;
  43.     private String correlazioneApplicativaRisposta;
  44.     private String servizioApplicativoFruitore;
  45.     private String implementazionePdDMittente;
  46.     private String implementazionePdDDestinatario;
  47.     public Busta getBusta() {
  48.         return this.busta;
  49.     }
  50.     public void setBusta(Busta busta) {
  51.         this.busta = busta;
  52.     }
  53.     public IOpenSPCoopState getOpenspcoop() {
  54.         return this.openspcoop;
  55.     }
  56.     public void setOpenspcoop(IOpenSPCoopState openspcoop) {
  57.         this.openspcoop = openspcoop;
  58.     }
  59.     public IDSoggetto getIdentitaPdD() {
  60.         return this.identitaPdD;
  61.     }
  62.     public void setIdentitaPdD(IDSoggetto identitaPdD) {
  63.         this.identitaPdD = identitaPdD;
  64.     }
  65.     public OpenSPCoop2Properties getPropertiesReader() {
  66.         return this.propertiesReader;
  67.     }
  68.     public void setPropertiesReader(OpenSPCoop2Properties propertiesReader) {
  69.         this.propertiesReader = propertiesReader;
  70.     }
  71.     public MsgDiagnostico getMsgDiag() {
  72.         return this.msgDiag;
  73.     }
  74.     public void setMsgDiag(MsgDiagnostico msgDiag) {
  75.         this.msgDiag = msgDiag;
  76.     }
  77.     public Logger getLogCore() {
  78.         return this.logCore;
  79.     }
  80.     public void setLogCore(Logger logCore) {
  81.         this.logCore = logCore;
  82.     }
  83.     public String getProfiloGestione() {
  84.         return this.profiloGestione;
  85.     }
  86.     public void setProfiloGestione(String profiloGestione) {
  87.         this.profiloGestione = profiloGestione;
  88.     }
  89.     public String getCorrelazioneApplicativa() {
  90.         return this.correlazioneApplicativa;
  91.     }
  92.     public void setCorrelazioneApplicativa(String correlazioneApplicativa) {
  93.         this.correlazioneApplicativa = correlazioneApplicativa;
  94.     }
  95.     public String getServizioApplicativoFruitore() {
  96.         return this.servizioApplicativoFruitore;
  97.     }
  98.     public void setServizioApplicativoFruitore(String servizioApplicativoFruitore) {
  99.         this.servizioApplicativoFruitore = servizioApplicativoFruitore;
  100.     }
  101.     public String getImplementazionePdDMittente() {
  102.         return this.implementazionePdDMittente;
  103.     }
  104.     public void setImplementazionePdDMittente(String implementazionePdDMittente) {
  105.         this.implementazionePdDMittente = implementazionePdDMittente;
  106.     }
  107.     public String getImplementazionePdDDestinatario() {
  108.         return this.implementazionePdDDestinatario;
  109.     }
  110.     public void setImplementazionePdDDestinatario(
  111.             String implementazionePdDDestinatario) {
  112.         this.implementazionePdDDestinatario = implementazionePdDDestinatario;
  113.     }
  114.     public String getCorrelazioneApplicativaRisposta() {
  115.         return this.correlazioneApplicativaRisposta;
  116.     }
  117.     public void setCorrelazioneApplicativaRisposta(
  118.             String correlazioneApplicativaRisposta) {
  119.         this.correlazioneApplicativaRisposta = correlazioneApplicativaRisposta;
  120.     }
  121. }