GestoreCorrelazioneApplicativaConfig.java
- /*
- * GovWay - A customizable API Gateway
- * https://govway.org
- *
- * Copyright (c) 2005-2025 Link.it srl (https://link.it).
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3, as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- package org.openspcoop2.pdd.core;
- import org.openspcoop2.core.config.PortaApplicativa;
- import org.openspcoop2.core.config.PortaDelegata;
- import org.openspcoop2.core.id.IDServizio;
- import org.openspcoop2.core.id.IDSoggetto;
- import org.openspcoop2.pdd.core.transazioni.Transaction;
- import org.openspcoop2.protocol.sdk.Busta;
- import org.openspcoop2.protocol.sdk.IProtocolFactory;
- import org.openspcoop2.protocol.sdk.state.IState;
- import org.slf4j.Logger;
- /**
- * GestoreCorrelazioneApplicativaConfig
- *
- * @author Andrea Poli (apoli@link.it)
- * @author $Author$
- * @version $Rev$, $Date$
- */
- public class GestoreCorrelazioneApplicativaConfig {
-
- private IState state;
- private Logger alog;
- private IDSoggetto soggettoFruitore;
- private IDServizio idServizio;
- private Busta busta;
- private String servizioApplicativo;
- private IProtocolFactory<?> protocolFactory;
- private Transaction transaction;
- private PdDContext pddContext;
- private PortaDelegata pd;
- private PortaApplicativa pa;
- public IState getState() {
- return this.state;
- }
- public void setState(IState state) {
- this.state = state;
- }
- public Logger getAlog() {
- return this.alog;
- }
- public void setAlog(Logger alog) {
- this.alog = alog;
- }
- public IDSoggetto getSoggettoFruitore() {
- return this.soggettoFruitore;
- }
- public void setSoggettoFruitore(IDSoggetto soggettoFruitore) {
- this.soggettoFruitore = soggettoFruitore;
- }
- public IDServizio getIdServizio() {
- return this.idServizio;
- }
- public void setIdServizio(IDServizio idServizio) {
- this.idServizio = idServizio;
- }
- public Busta getBusta() {
- return this.busta;
- }
- public void setBusta(Busta busta) {
- this.busta = busta;
- }
- public String getServizioApplicativo() {
- return this.servizioApplicativo;
- }
- public void setServizioApplicativo(String servizioApplicativo) {
- this.servizioApplicativo = servizioApplicativo;
- }
- public IProtocolFactory<?> getProtocolFactory() {
- return this.protocolFactory;
- }
- public void setProtocolFactory(IProtocolFactory<?> protocolFactory) {
- this.protocolFactory = protocolFactory;
- }
- public Transaction getTransaction() {
- return this.transaction;
- }
- public void setTransaction(Transaction transaction) {
- this.transaction = transaction;
- }
- public PdDContext getPddContext() {
- return this.pddContext;
- }
- public void setPddContext(PdDContext pddContext) {
- this.pddContext = pddContext;
- }
- public PortaDelegata getPd() {
- return this.pd;
- }
- public void setPd(PortaDelegata pd) {
- this.pd = pd;
- }
- public PortaApplicativa getPa() {
- return this.pa;
- }
- public void setPa(PortaApplicativa pa) {
- this.pa = pa;
- }
- }