AbstractDatiInvocazione.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.token;

  21. import org.openspcoop2.message.OpenSPCoop2Message;
  22. import org.openspcoop2.pdd.core.connettori.InfoConnettoreIngresso;
  23. import org.openspcoop2.protocol.sdk.state.IState;
  24. import org.openspcoop2.protocol.sdk.state.RequestInfo;

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

  33.     private InfoConnettoreIngresso infoConnettoreIngresso;
  34.    
  35.     private IState state;
  36.    
  37.     private String idModulo;
  38.    
  39.     private RequestInfo requestInfo;
  40.    
  41.     private OpenSPCoop2Message message;
  42.    
  43.     private PolicyGestioneToken policyGestioneToken;
  44.    
  45.     public PolicyGestioneToken getPolicyGestioneToken() {
  46.         return this.policyGestioneToken;
  47.     }
  48.     public void setPolicyGestioneToken(PolicyGestioneToken policyGestioneToken) {
  49.         this.policyGestioneToken = policyGestioneToken;
  50.     }
  51.     public OpenSPCoop2Message getMessage() {
  52.         return this.message;
  53.     }
  54.     public void setMessage(OpenSPCoop2Message message) {
  55.         this.message = message;
  56.     }
  57.     public InfoConnettoreIngresso getInfoConnettoreIngresso() {
  58.         return this.infoConnettoreIngresso;
  59.     }
  60.     public void setInfoConnettoreIngresso(
  61.             InfoConnettoreIngresso infoConnettoreIngresso) {
  62.         this.infoConnettoreIngresso = infoConnettoreIngresso;
  63.     }

  64.     public IState getState() {
  65.         return this.state;
  66.     }
  67.     public void setState(IState state) {
  68.         this.state = state;
  69.     }
  70.    
  71.     public String getIdModulo() {
  72.         return this.idModulo;
  73.     }
  74.     public void setIdModulo(String idModulo) {
  75.         this.idModulo = idModulo;
  76.     }
  77.    
  78.     public RequestInfo getRequestInfo() {
  79.         return this.requestInfo;
  80.     }
  81.     public void setRequestInfo(RequestInfo requestInfo) {
  82.         this.requestInfo = requestInfo;
  83.     }
  84.    
  85. }