RicezioneBusteParametriInvioBustaErrore.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.openspcoop2.message.OpenSPCoop2Message;
  22. import org.openspcoop2.pdd.core.PdDContext;

  23. /**
  24.  * Informazioni per la gestione della risposta inviata come errore
  25.  *
  26.  * @author Poli Andrea (apoli@link.it)
  27.  * @author $Author$
  28.  * @version $Rev$, $Date$
  29.  */
  30. public class RicezioneBusteParametriInvioBustaErrore extends RicezioneBusteParametriGestioneBustaErrore {
  31.    
  32.     private OpenSPCoop2Message openspcoopMsg;

  33.     private boolean newConnectionForResponse;
  34.     private boolean utilizzoIndirizzoTelematico;
  35.     private boolean functionAsRouter;
  36.     private boolean onewayVersione11;
  37.     private PdDContext pddContext;

  38.     public boolean isNewConnectionForResponse() {
  39.         return this.newConnectionForResponse;
  40.     }
  41.     public void setNewConnectionForResponse(boolean newConnectionForResponse) {
  42.         this.newConnectionForResponse = newConnectionForResponse;
  43.     }
  44.     public boolean isUtilizzoIndirizzoTelematico() {
  45.         return this.utilizzoIndirizzoTelematico;
  46.     }
  47.     public void setUtilizzoIndirizzoTelematico(boolean utilizzoIndirizzoTelematico) {
  48.         this.utilizzoIndirizzoTelematico = utilizzoIndirizzoTelematico;
  49.     }
  50.     public boolean isFunctionAsRouter() {
  51.         return this.functionAsRouter;
  52.     }
  53.     public void setFunctionAsRouter(boolean functionAsRouter) {
  54.         this.functionAsRouter = functionAsRouter;
  55.     }
  56.     public boolean isOnewayVersione11() {
  57.         return this.onewayVersione11;
  58.     }
  59.     public void setOnewayVersione11(boolean onewayVersione11) {
  60.         this.onewayVersione11 = onewayVersione11;
  61.     }
  62.     public OpenSPCoop2Message getOpenspcoopMsg() {
  63.         return this.openspcoopMsg;
  64.     }
  65.     public void setOpenspcoopMsg(OpenSPCoop2Message openspcoopMsg) {
  66.         this.openspcoopMsg = openspcoopMsg;
  67.     }
  68.     public PdDContext getPddContext() {
  69.         return this.pddContext;
  70.     }
  71.     public void setPddContext(PdDContext pddContext) {
  72.         this.pddContext = pddContext;
  73.     }
  74. }