EsitoIdentificationModeSoapFault.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. /**
  22. * EsitoIdentificationModeSoapFault
  23. *
  24. * @author Andrea Poli (apoli@link.it)
  25.  * @author $Author$
  26.  * @version $Rev$, $Date$
  27. */
  28. public class EsitoIdentificationModeSoapFault {

  29.     private String faultCode;
  30.     private String faultNamespaceCode;
  31.     private String faultReason;
  32.     private Boolean faultReasonContains;
  33.     private String faultActor;
  34.     private Boolean faultActorNotDefined;
  35.    
  36.     public String getFaultReason() {
  37.         return this.faultReason;
  38.     }
  39.     public void setFaultReason(String faultReason) {
  40.         this.faultReason = faultReason;
  41.     }
  42.     public Boolean getFaultReasonContains() {
  43.         return this.faultReasonContains;
  44.     }
  45.     public void setFaultReasonContains(Boolean faultReasonContains) {
  46.         this.faultReasonContains = faultReasonContains;
  47.     }
  48.     public Boolean getFaultActorNotDefined() {
  49.         return this.faultActorNotDefined;
  50.     }
  51.     public void setFaultActorNotDefined(Boolean faultActorNotDefined) {
  52.         this.faultActorNotDefined = faultActorNotDefined;
  53.     }
  54.    
  55.     public String getFaultNamespaceCode() {
  56.         return this.faultNamespaceCode;
  57.     }
  58.     public void setFaultNamespaceCode(String faultNamespaceCode) {
  59.         this.faultNamespaceCode = faultNamespaceCode;
  60.     }
  61.     public String getFaultCode() {
  62.         return this.faultCode;
  63.     }
  64.     public void setFaultCode(String faultCode) {
  65.         this.faultCode = faultCode;
  66.     }
  67.     public String getFaultActor() {
  68.         return this.faultActor;
  69.     }
  70.     public void setFaultActor(String faultActor) {
  71.         this.faultActor = faultActor;
  72.     }
  73. }