WSDLValidatorConfig.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.core.registry.wsdl;

  21. /**
  22.  * WSDLValidatorConfig
  23.  *
  24.  * @author Poli Andrea (apoli@link.it)
  25.  * @author $Author$
  26.  * @version $Rev$, $Date$
  27.  */
  28. public class WSDLValidatorConfig {

  29.     private boolean gestioneXsiTypeRpcLiteral;
  30.     private boolean rpcAcceptRootElementUnqualified;
  31.    
  32.     private boolean validationXsdAddNamespaceXSITypeIfNotExists;
  33.     private boolean validationRpcAddNamespaceXSITypeIfNotExists;
  34.     private boolean validationDocumentAddNamespaceXSITypeIfNotExists;
  35.    
  36.     public boolean isGestioneXsiTypeRpcLiteral() {
  37.         return this.gestioneXsiTypeRpcLiteral;
  38.     }
  39.     public void setGestioneXsiTypeRpcLiteral(boolean gestioneXsiTypeRpcLiteral) {
  40.         this.gestioneXsiTypeRpcLiteral = gestioneXsiTypeRpcLiteral;
  41.     }
  42.     public boolean isRpcAcceptRootElementUnqualified() {
  43.         return this.rpcAcceptRootElementUnqualified;
  44.     }
  45.     public void setRpcAcceptRootElementUnqualified(boolean rpcAcceptRootElementUnqualified) {
  46.         this.rpcAcceptRootElementUnqualified = rpcAcceptRootElementUnqualified;
  47.     }
  48.     public boolean isValidationXsdAddNamespaceXSITypeIfNotExists() {
  49.         return this.validationXsdAddNamespaceXSITypeIfNotExists;
  50.     }
  51.     public void setValidationXsdAddNamespaceXSITypeIfNotExists(boolean validationXsdAddNamespaceXSITypeIfNotExists) {
  52.         this.validationXsdAddNamespaceXSITypeIfNotExists = validationXsdAddNamespaceXSITypeIfNotExists;
  53.     }
  54.     public boolean isValidationRpcAddNamespaceXSITypeIfNotExists() {
  55.         return this.validationRpcAddNamespaceXSITypeIfNotExists;
  56.     }
  57.     public void setValidationRpcAddNamespaceXSITypeIfNotExists(boolean validationRpcAddNamespaceXSITypeIfNotExists) {
  58.         this.validationRpcAddNamespaceXSITypeIfNotExists = validationRpcAddNamespaceXSITypeIfNotExists;
  59.     }
  60.     public boolean isValidationDocumentAddNamespaceXSITypeIfNotExists() {
  61.         return this.validationDocumentAddNamespaceXSITypeIfNotExists;
  62.     }
  63.     public void setValidationDocumentAddNamespaceXSITypeIfNotExists(
  64.             boolean validationDocumentAddNamespaceXSITypeIfNotExists) {
  65.         this.validationDocumentAddNamespaceXSITypeIfNotExists = validationDocumentAddNamespaceXSITypeIfNotExists;
  66.     }
  67.    
  68. }