ConsegnaContenutiApplicativiBehaviourMessage.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.mdb;

  21. import java.io.Serializable;
  22. import java.util.Date;

  23. import org.openspcoop2.core.config.GestioneErrore;
  24. import org.openspcoop2.core.transazioni.IdTransazioneApplicativoServer;
  25. import org.openspcoop2.pdd.core.behaviour.BehaviourForwardToConfiguration;

  26. /**
  27.  * Classe utilizzata per raccogliere informazioni incluse in un MessaggioJMS.
  28.  * Il messaggio JMS sara' poi ricevuto, attraverso una coda apposita,
  29.  * dal mdb definito nella classe {@link ConsegnaContenutiApplicativiMDB}.
  30.  *
  31.  *
  32.  * @author Poli Andrea (apoli@link.it)
  33.  * @author $Author$
  34.  * @version $Rev$, $Date$
  35.  */

  36. public class ConsegnaContenutiApplicativiBehaviourMessage implements Serializable {


  37.     /**
  38.      * serialVersionUID
  39.      */
  40.     private static final long serialVersionUID = 1L;

  41.     /* ********  F I E L D S  P R I V A T I  ******** */

  42.     private String idMessaggioPreBehaviour = null;
  43.     private BehaviourForwardToConfiguration behaviourForwardToConfiguration;
  44.     private IdTransazioneApplicativoServer idTransazioneApplicativoServer;
  45.     private Date oraRegistrazioneTransazioneApplicativoServer;
  46.     private GestioneErrore gestioneErrore;


  47.     /* ********  C O S T R U T T O R E  ******** */

  48.     /**
  49.      * Costruttore.
  50.      *
  51.      *
  52.      */
  53.     public ConsegnaContenutiApplicativiBehaviourMessage(){
  54.     }


  55.     public String getIdMessaggioPreBehaviour() {
  56.         return this.idMessaggioPreBehaviour;
  57.     }


  58.     public void setIdMessaggioPreBehaviour(String idMessaggioPreBehaviour) {
  59.         this.idMessaggioPreBehaviour = idMessaggioPreBehaviour;
  60.     }


  61.     public BehaviourForwardToConfiguration getBehaviourForwardToConfiguration() {
  62.         return this.behaviourForwardToConfiguration;
  63.     }


  64.     public void setBehaviourForwardToConfiguration(BehaviourForwardToConfiguration behaviourForwardToConfiguration) {
  65.         this.behaviourForwardToConfiguration = behaviourForwardToConfiguration;
  66.     }

  67.     public IdTransazioneApplicativoServer getIdTransazioneApplicativoServer() {
  68.         return this.idTransazioneApplicativoServer;
  69.     }

  70.     public void setIdTransazioneApplicativoServer(IdTransazioneApplicativoServer idTransazioneApplicativoServer) {
  71.         this.idTransazioneApplicativoServer = idTransazioneApplicativoServer;
  72.     }

  73.     public Date getOraRegistrazioneTransazioneApplicativoServer() {
  74.         return this.oraRegistrazioneTransazioneApplicativoServer;
  75.     }

  76.     public void setOraRegistrazioneTransazioneApplicativoServer(Date oraRegistrazioneTransazioneApplicativoServer) {
  77.         this.oraRegistrazioneTransazioneApplicativoServer = oraRegistrazioneTransazioneApplicativoServer;
  78.     }
  79.    
  80.     public GestioneErrore getGestioneErrore() {
  81.         return this.gestioneErrore;
  82.     }
  83.    
  84.     public void setGestioneErrore(GestioneErrore gestioneErrore) {
  85.         this.gestioneErrore = gestioneErrore;
  86.     }
  87.    
  88. }