EsitoIdentificationModeContextProperty.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.protocol.utils;

  21. import org.openspcoop2.protocol.sdk.constants.EsitoTransazioneName;
  22. import org.openspcoop2.utils.MapKey;

  23. /**
  24. * EsitoIdentificationModeMessageProperty
  25. *
  26. * @author Andrea Poli (apoli@link.it)
  27.  * @author $Author$
  28.  * @version $Rev$, $Date$
  29. */
  30. public class EsitoIdentificationModeContextProperty {

  31.     private EsitoTransazioneName esito;
  32.     private MapKey<String> mapKey;
  33.     private String name;
  34.     private String value;
  35.    
  36.     public String getName() {
  37.         return this.name;
  38.     }
  39.     public void setName(String name) {
  40.         this.name = name;
  41.     }
  42.     public String getValue() {
  43.         return this.value;
  44.     }
  45.     public void setValue(String value) {
  46.         this.value = value;
  47.     }
  48.    
  49.     public MapKey<String> getMapKey() {
  50.         return this.mapKey;
  51.     }
  52.     public void setMapKey(MapKey<String> mapKey) {
  53.         this.mapKey = mapKey;
  54.     }
  55.    
  56.     public EsitoTransazioneName getEsito() {
  57.         return this.esito;
  58.     }
  59.     public void setEsito(EsitoTransazioneName esito) {
  60.         this.esito = esito;
  61.     }
  62. }