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 org.openspcoop2.protocol.information_missing.constants;

  21. import org.openspcoop2.protocol.information_missing.utils.ProjectInfo;

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

  30.     public static final String ROOT_LOCAL_NAME_INFORMATION_MISSING = "openspcoop2";
  31.     public static final String LOCAL_NAME_SOGGETTO = "soggetto";
  32.     public static final String LOCAL_NAME_SERVIZIO_APPLICATIVO = "servizio-applicativo";
  33.     public static final String TARGET_NAMESPACE = (new ProjectInfo()).getProjectNamespace();
  34.    
  35.     // IL TIPO DEVE ESSERE DEFINITO PER POTER POI COMPRENDERE IL PROTOCOLLO public static final String TIPO_SOGGETTO_DEFAULT = "@OPENSPCOOP2_TIPO_SOGGETTO_DEFAULT@";
  36.     public static final String NOME_SOGGETTO_DEFAULT = "@OPENSPCOOP2_NOME_SOGGETTO_DEFAULT@";
  37.    
  38.     // sinonimi
  39.     public static final String TIPO_SOGGETTO = "@OPENSPCOOP2_TIPO_SOGGETTO@";
  40.     public static final String NOME_SOGGETTO = "@OPENSPCOOP2_NOME_SOGGETTO@";
  41.     public static final String TIPO_SOGGETTO_PROPRIETARIO = "@OPENSPCOOP2_TIPO_SOGGETTO_PROPRIETARIO@";
  42.     public static final String NOME_SOGGETTO_PROPRIETARIO = "@OPENSPCOOP2_NOME_SOGGETTO_PROPRIETARIO@";
  43.    
  44.     public static final String TIPO_SOGGETTO_EROGATORE = "@OPENSPCOOP2_TIPO_SOGGETTO_EROGATORE@";
  45.     public static final String NOME_SOGGETTO_EROGATORE = "@OPENSPCOOP2_NOME_SOGGETTO_EROGATORE@";
  46.    
  47.     public static final String TIPO_SERVIZIO = "@OPENSPCOOP2_TIPO_SERVIZIO@";
  48.     public static final String NOME_SERVIZIO = "@OPENSPCOOP2_NOME_SERVIZIO@";
  49.     public static final String AZIONE = "@OPENSPCOOP2_AZIONE@";
  50.    
  51.     public static final String TIPO_FRUITORE = "@OPENSPCOOP2_TIPO_FRUITORE@";
  52.     public static final String NOME_FRUITORE = "@OPENSPCOOP2_NOME_FRUITORE@";
  53.    
  54. }