InRequestPDMessage.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.PortaDelegata;
  23. import org.openspcoop2.message.OpenSPCoop2Message;
  24. import org.openspcoop2.protocol.sdk.Busta;
  25. import org.openspcoop2.protocol.sdk.state.URLProtocolContext;

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

  34.     private PortaDelegata portaDelegata;
  35.     private OpenSPCoop2Message message;
  36.     private URLProtocolContext urlProtocolContext;
  37.     private IDSoggetto soggettoPropeprietarioPortaDelegata;
  38.     private Busta bustaRichiesta;
  39.    
  40.     public Busta getBustaRichiesta() {
  41.         return this.bustaRichiesta;
  42.     }
  43.     public void setBustaRichiesta(Busta busta) {
  44.         this.bustaRichiesta = busta;
  45.     }
  46.     public PortaDelegata getPortaDelegata() {
  47.         return this.portaDelegata;
  48.     }
  49.     public void setPortaDelegata(PortaDelegata portaDelegata) {
  50.         this.portaDelegata = portaDelegata;
  51.     }
  52.     public OpenSPCoop2Message getMessage() {
  53.         return this.message;
  54.     }
  55.     public void setMessage(OpenSPCoop2Message message) {
  56.         this.message = message;
  57.     }
  58.     public URLProtocolContext getUrlProtocolContext() {
  59.         return this.urlProtocolContext;
  60.     }
  61.     public void setUrlProtocolContext(URLProtocolContext urlProtocolContext) {
  62.         this.urlProtocolContext = urlProtocolContext;
  63.     }
  64.     public IDSoggetto getSoggettoPropeprietarioPortaDelegata() {
  65.         return this.soggettoPropeprietarioPortaDelegata;
  66.     }
  67.     public void setSoggettoPropeprietarioPortaDelegata(
  68.             IDSoggetto soggettoPropeprietarioPortaDelegata) {
  69.         this.soggettoPropeprietarioPortaDelegata = soggettoPropeprietarioPortaDelegata;
  70.     }
  71.    
  72. }