GestoreCorrelazioneApplicativaConfig.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;

  21. import org.openspcoop2.core.config.PortaApplicativa;
  22. import org.openspcoop2.core.config.PortaDelegata;
  23. import org.openspcoop2.core.id.IDServizio;
  24. import org.openspcoop2.core.id.IDSoggetto;
  25. import org.openspcoop2.pdd.core.transazioni.Transaction;
  26. import org.openspcoop2.protocol.sdk.Busta;
  27. import org.openspcoop2.protocol.sdk.IProtocolFactory;
  28. import org.openspcoop2.protocol.sdk.state.IState;
  29. import org.slf4j.Logger;

  30. /**
  31.  * GestoreCorrelazioneApplicativaConfig
  32.  *
  33.  * @author Andrea Poli (apoli@link.it)
  34.  * @author $Author$
  35.  * @version $Rev$, $Date$
  36.  */
  37. public class GestoreCorrelazioneApplicativaConfig {
  38.    
  39.     private IState state;
  40.     private Logger alog;
  41.     private IDSoggetto soggettoFruitore;
  42.     private IDServizio idServizio;
  43.     private Busta busta;
  44.     private String servizioApplicativo;
  45.     private IProtocolFactory<?> protocolFactory;
  46.     private Transaction transaction;
  47.     private PdDContext pddContext;
  48.     private PortaDelegata pd;
  49.     private PortaApplicativa pa;

  50.     public IState getState() {
  51.         return this.state;
  52.     }
  53.     public void setState(IState state) {
  54.         this.state = state;
  55.     }
  56.     public Logger getAlog() {
  57.         return this.alog;
  58.     }
  59.     public void setAlog(Logger alog) {
  60.         this.alog = alog;
  61.     }
  62.     public IDSoggetto getSoggettoFruitore() {
  63.         return this.soggettoFruitore;
  64.     }
  65.     public void setSoggettoFruitore(IDSoggetto soggettoFruitore) {
  66.         this.soggettoFruitore = soggettoFruitore;
  67.     }
  68.     public IDServizio getIdServizio() {
  69.         return this.idServizio;
  70.     }
  71.     public void setIdServizio(IDServizio idServizio) {
  72.         this.idServizio = idServizio;
  73.     }
  74.     public Busta getBusta() {
  75.         return this.busta;
  76.     }
  77.     public void setBusta(Busta busta) {
  78.         this.busta = busta;
  79.     }
  80.     public String getServizioApplicativo() {
  81.         return this.servizioApplicativo;
  82.     }
  83.     public void setServizioApplicativo(String servizioApplicativo) {
  84.         this.servizioApplicativo = servizioApplicativo;
  85.     }
  86.     public IProtocolFactory<?> getProtocolFactory() {
  87.         return this.protocolFactory;
  88.     }
  89.     public void setProtocolFactory(IProtocolFactory<?> protocolFactory) {
  90.         this.protocolFactory = protocolFactory;
  91.     }
  92.     public Transaction getTransaction() {
  93.         return this.transaction;
  94.     }
  95.     public void setTransaction(Transaction transaction) {
  96.         this.transaction = transaction;
  97.     }
  98.     public PdDContext getPddContext() {
  99.         return this.pddContext;
  100.     }
  101.     public void setPddContext(PdDContext pddContext) {
  102.         this.pddContext = pddContext;
  103.     }
  104.     public PortaDelegata getPd() {
  105.         return this.pd;
  106.     }
  107.     public void setPd(PortaDelegata pd) {
  108.         this.pd = pd;
  109.     }
  110.     public PortaApplicativa getPa() {
  111.         return this.pa;
  112.     }
  113.     public void setPa(PortaApplicativa pa) {
  114.         this.pa = pa;
  115.     }
  116. }