Costanti.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 it.gov.spcoop.sica.wscp.driver;
  21. /**
  22.  *
  23.  *
  24.  * @author Stefano Corallo (corallo@link.it)
  25.  * @author $Author$
  26.  * @version $Rev$, $Date$
  27.  */
  28. public class Costanti {

  29.     public static final String VERSIONE_BUSTA = "e-govV1.1";
  30.    
  31.     public static final String SPECIFICA_SEMIFORMALE_INFORMAZIONI_EGOV = "ProfiloDiCollaborazione.wscp";
  32.    
  33.     public static final String ROOT_LOCAL_NAME = "profiloCollaborazioneEGOV";
  34.    
  35.     public static final String PREFIX_CLIENT_SICA = "wscp";
  36.    
  37.     public static final String CHILD_ELEMENT_EGOV_VERSIONE_LOCAL_NAME = "versioneEGOV";
  38.     public static final String CHILD_ELEMENT_DEFINIZIONE_INTERFACCIA_LOCAL_NAME = "riferimentoDefinizioneInterfaccia";
  39.     public static final String CHILD_ELEMENT_OPERATION_LIST_LOCAL_NAME = "listaCollaborazioni";
  40.     public static final String CHILD_ELEMENT_OPERATION_LOCAL_NAME = "collaborazione";
  41.    
  42.     public static final String CHILD_ELEMENT_OPERATION_ATTRIBUTE_PROFILO = "profiloDiCollaborazione";
  43.     public static final String CHILD_ELEMENT_OPERATION_ATTRIBUTE_SERVIZIO = "servizio";
  44.     public static final String CHILD_ELEMENT_OPERATION_ATTRIBUTE_SERVIZIO_CORRELATO = "servizioCorrelato";
  45.     public static final String CHILD_ELEMENT_OPERATION_ATTRIBUTE_AZIONE = "operazione";
  46.     public static final String CHILD_ELEMENT_OPERATION_ATTRIBUTE_AZIONE_CORRELATA = "operazioneCorrelata";
  47.    
  48.     public static final String TARGET_NAMESPACE = "http://spcoop.gov.it/sica/wscp";
  49. }