InfoConnettoreIngresso.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.connettori;

  21. import java.io.Serializable;

  22. import org.openspcoop2.pdd.core.credenziali.Credenziali;
  23. import org.openspcoop2.protocol.sdk.state.URLProtocolContext;

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

  33.     private static final long serialVersionUID = 1L;
  34.     /** FromLocation */
  35.     private String fromLocation;
  36.     /** Credenziali */
  37.     private Credenziali credenziali ;
  38.     /** SOAP Action */
  39.     private String soapAction = null;

  40.     /** Parametri di Invocazione */
  41.     URLProtocolContext urlProtocolContext = null;
  42.    
  43.     public Credenziali getCredenziali() {
  44.         return this.credenziali;
  45.     }
  46.     public void setCredenziali(Credenziali credenziali) {
  47.         this.credenziali = credenziali;
  48.     }
  49.     public String getSoapAction() {
  50.         return this.soapAction;
  51.     }
  52.     public void setSoapAction(String soapAction) {
  53.         this.soapAction = soapAction;
  54.     }
  55.     public String getFromLocation() {
  56.         return this.fromLocation;
  57.     }
  58.     public void setFromLocation(String fromLocation) {
  59.         this.fromLocation = fromLocation;
  60.     }
  61.     public URLProtocolContext getUrlProtocolContext() {
  62.         return this.urlProtocolContext;
  63.     }
  64.     public void setUrlProtocolContext(URLProtocolContext urlProtocolContext) {
  65.         this.urlProtocolContext = urlProtocolContext;
  66.     }

  67.    
  68. }