OutRequestPDMessage.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.integrazione;

  21. import java.util.List;
  22. import java.util.Map;

  23. import org.openspcoop2.core.config.PortaDelegata;
  24. import org.openspcoop2.core.id.IDServizio;
  25. import org.openspcoop2.core.id.IDSoggetto;
  26. import org.openspcoop2.message.OpenSPCoop2Message;
  27. import org.openspcoop2.protocol.sdk.Busta;

  28. /**
  29.  * InRequestPDMessage
  30.  *
  31.  * @author Poli Andrea (apoli@link.it)
  32.  * @author $Author$
  33.  * @version $Rev$, $Date$
  34.  */
  35. public class OutRequestPDMessage {

  36.     private PortaDelegata portaDelegata;
  37.     private OpenSPCoop2Message message;
  38.     private Map<String, List<String>> headers;
  39.     private Map<String, List<String>> parameters;
  40.     private IDSoggetto soggettoMittente;
  41.     private IDServizio servizio;
  42.     private Busta bustaRichiesta;
  43.    
  44.     public Busta getBustaRichiesta() {
  45.         return this.bustaRichiesta;
  46.     }
  47.     public void setBustaRichiesta(Busta busta) {
  48.         this.bustaRichiesta = busta;
  49.     }
  50.     public Map<String, List<String>> getHeaders() {
  51.         return this.headers;
  52.     }
  53.     public void setHeaders(Map<String, List<String>> proprietaTrasporto) {
  54.         this.headers = proprietaTrasporto;
  55.     }
  56.     public Map<String, List<String>> getParameters() {
  57.         return this.parameters;
  58.     }
  59.     public void setParameters(Map<String, List<String>> proprietaUrlBased) {
  60.         this.parameters = proprietaUrlBased;
  61.     }
  62.     public IDSoggetto getSoggettoMittente() {
  63.         return this.soggettoMittente;
  64.     }
  65.     public void setSoggettoMittente(IDSoggetto soggettoMittente) {
  66.         this.soggettoMittente = soggettoMittente;
  67.     }
  68.     public IDServizio getServizio() {
  69.         return this.servizio;
  70.     }
  71.     public void setServizio(IDServizio servizio) {
  72.         this.servizio = servizio;
  73.     }
  74.     public PortaDelegata getPortaDelegata() {
  75.         return this.portaDelegata;
  76.     }
  77.     public void setPortaDelegata(PortaDelegata portaDelegata) {
  78.         this.portaDelegata = portaDelegata;
  79.     }
  80.     public OpenSPCoop2Message getMessage() {
  81.         return this.message;
  82.     }
  83.     public void setMessage(OpenSPCoop2Message message) {
  84.         this.message = message;
  85.     }

  86.    
  87. }