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

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

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

  34.     private InfoConnettoreIngresso infoConnettoreIngresso;
  35.    
  36.     private IState state;
  37.    
  38.     private String idModulo;
  39.    
  40.     private OpenSPCoop2Message message;
  41.    
  42.     private Busta busta;
  43.    
  44.     private RequestInfo requestInfo;
  45.    
  46.     private PolicyAttributeAuthority policyAttributeAuthority;
  47.    
  48.     public PolicyAttributeAuthority getPolicyAttributeAuthority() {
  49.         return this.policyAttributeAuthority;
  50.     }
  51.     public void setPolicyAttributeAuthority(PolicyAttributeAuthority policyAttributeAuthority) {
  52.         this.policyAttributeAuthority = policyAttributeAuthority;
  53.     }
  54.     public OpenSPCoop2Message getMessage() {
  55.         return this.message;
  56.     }
  57.     public void setMessage(OpenSPCoop2Message message) {
  58.         this.message = message;
  59.     }
  60.     public Busta getBusta() {
  61.         return this.busta;
  62.     }
  63.     public void setBusta(Busta busta) {
  64.         this.busta = busta;
  65.     }
  66.     public InfoConnettoreIngresso getInfoConnettoreIngresso() {
  67.         return this.infoConnettoreIngresso;
  68.     }
  69.     public void setInfoConnettoreIngresso(
  70.             InfoConnettoreIngresso infoConnettoreIngresso) {
  71.         this.infoConnettoreIngresso = infoConnettoreIngresso;
  72.     }

  73.     public IState getState() {
  74.         return this.state;
  75.     }
  76.     public void setState(IState state) {
  77.         this.state = state;
  78.     }
  79.    
  80.     public String getIdModulo() {
  81.         return this.idModulo;
  82.     }
  83.     public void setIdModulo(String idModulo) {
  84.         this.idModulo = idModulo;
  85.     }

  86.     public RequestInfo getRequestInfo() {
  87.         return this.requestInfo;
  88.     }
  89.     public void setRequestInfo(RequestInfo requestInfo) {
  90.         this.requestInfo = requestInfo;
  91.     }
  92. }