InRequestPAMessage.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 org.openspcoop2.core.id.IDSoggetto;
  22. import org.openspcoop2.core.config.PortaApplicativa;
  23. import org.openspcoop2.message.OpenSPCoop2Message;
  24. import org.openspcoop2.core.id.IDServizio;
  25. import org.openspcoop2.protocol.sdk.Busta;
  26. import org.openspcoop2.protocol.sdk.state.URLProtocolContext;

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

  35.     private PortaApplicativa portaApplicativa;
  36.     private OpenSPCoop2Message message;
  37.     private URLProtocolContext urlProtocolContext;
  38.     private IDSoggetto soggettoMittente;
  39.     private IDServizio servizio;
  40.     private Busta bustaRichiesta;
  41.    
  42.     public Busta getBustaRichiesta() {
  43.         return this.bustaRichiesta;
  44.     }
  45.     public void setBustaRichiesta(Busta busta) {
  46.         this.bustaRichiesta = busta;
  47.     }
  48.     public PortaApplicativa getPortaApplicativa() {
  49.         return this.portaApplicativa;
  50.     }
  51.     public void setPortaApplicativa(PortaApplicativa portaApplicativa) {
  52.         this.portaApplicativa = portaApplicativa;
  53.     }
  54.     public OpenSPCoop2Message getMessage() {
  55.         return this.message;
  56.     }
  57.     public void setMessage(OpenSPCoop2Message message) {
  58.         this.message = message;
  59.     }
  60.     public IDSoggetto getSoggettoMittente() {
  61.         return this.soggettoMittente;
  62.     }
  63.     public void setSoggettoMittente(IDSoggetto soggettoMittente) {
  64.         this.soggettoMittente = soggettoMittente;
  65.     }
  66.     public IDServizio getServizio() {
  67.         return this.servizio;
  68.     }
  69.     public void setServizio(IDServizio servizio) {
  70.         this.servizio = servizio;
  71.     }
  72.     public URLProtocolContext getUrlProtocolContext() {
  73.         return this.urlProtocolContext;
  74.     }
  75.     public void setUrlProtocolContext(URLProtocolContext urlProtocolContext) {
  76.         this.urlProtocolContext = urlProtocolContext;
  77.     }
  78.    
  79. }