Dati.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.controllo_traffico.plugins;

  21. import java.io.Serializable;

  22. import org.openspcoop2.core.controllo_traffico.beans.DatiTransazione;
  23. import org.openspcoop2.message.OpenSPCoop2Message;
  24. import org.openspcoop2.pdd.core.PdDContext;
  25. import org.openspcoop2.pdd.core.connettori.InfoConnettoreIngresso;
  26. import org.openspcoop2.protocol.sdk.state.URLProtocolContext;

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

  35.     /**
  36.      *
  37.      */
  38.     private static final long serialVersionUID = 1L;

  39.     private DatiTransazione datiTransazione;
  40.     private URLProtocolContext urlProtocolContext;
  41.     @Deprecated
  42.     private InfoConnettoreIngresso connettore;
  43.     private OpenSPCoop2Message messaggio;
  44.     private PdDContext pddContext;
  45.    
  46.     public DatiTransazione getDatiTransazione() {
  47.         return this.datiTransazione;
  48.     }
  49.     public void setDatiTransazione(DatiTransazione datiTransazione) {
  50.         this.datiTransazione = datiTransazione;
  51.     }
  52.     @Deprecated
  53.     public InfoConnettoreIngresso getConnettore() {
  54.         return this.connettore;
  55.     }
  56.     public void setConnettore(InfoConnettoreIngresso connettore) {
  57.         this.connettore = connettore;
  58.     }
  59.     public URLProtocolContext getUrlProtocolContext() {
  60.         return this.urlProtocolContext;
  61.     }
  62.     public void setUrlProtocolContext(URLProtocolContext urlProtocolContext) {
  63.         this.urlProtocolContext = urlProtocolContext;
  64.     }
  65.     public OpenSPCoop2Message getMessaggio() {
  66.         return this.messaggio;
  67.     }
  68.     public void setMessaggio(OpenSPCoop2Message messaggio) {
  69.         this.messaggio = messaggio;
  70.     }
  71.     public PdDContext getPddContext() {
  72.         return this.pddContext;
  73.     }
  74.     public void setPddContext(PdDContext pddContext) {
  75.         this.pddContext = pddContext;
  76.     }
  77.    
  78. }