CostantiAbstraction.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.abstraction.constants;

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

  29.     public static final String TEMPLATES_DIR = "templates";
  30.     public static final String TEMPLATES_CORE_DIR = "core";
  31.     public static final String TEMPLATES_EROGAZIONE_DIR = "erogazione";
  32.     public static final String TEMPLATES_FRUIZIONE_DIR = "fruizione";
  33.     public static final String TEMPLATES_PDD = "pdd";
  34.     public static final String TEMPLATES_SOGGETTO = "soggetto";
  35.     public static final String TEMPLATES_ACCORDI_PARTE_SPECIFICA = "asps";
  36.     public static final String TEMPLATES_FRUITORE = "fruitore";
  37.     public static final String TEMPLATES_SERVIZI_APPLICATIVI = "sa";
  38.     public static final String TEMPLATES_PORTE_APPLICATIVE = "pa";
  39.     public static final String TEMPLATES_PORTE_DELEGATE = "pd";
  40.    
  41.     public static final String TEMPLATE_FILE = "templates.zip";
  42.     public static final String CSV_FORMAT_FILE = "csvFormat.properties";
  43.     public static final String CSV_MAPPING_FILE = "csvMapping.properties";
  44.     public static final String CSV_TEMPLATE_FILE = "csvTemplate.ftl";
  45.    
  46.     public static final String EROGAZIONI_DIR = "erogazioni";
  47.    
  48.     public static final String FRUIZIONI_DIR = "fruizioni";
  49.    
  50.     public static final String XML_EXTENSION = "xml";
  51.     public static final String CSV_EXTENSION = "csv";
  52.     public static final String FTL_EXTENSION = "ftl";
  53.     public static final String ZIP_EXTENSION = "zip";
  54.    
  55.    
  56.     public static final String EROGAZIONE_MAP_KEY_SERVIZIO = "servizio";
  57.     public static final String EROGAZIONE_MAP_KEY_SOGGETTO = "soggetto";
  58.     public static final String EROGAZIONE_MAP_KEY_FRUITORE = "fruitore";
  59.     public static final String EROGAZIONE_MAP_KEY_FRUIZIONE = "fruizione";
  60.     public static final String EROGAZIONE_MAP_KEY_APPLICATIVO_EROGATORE = "applicativoErogatore";
  61.     public static final String EROGAZIONE_MAP_KEY_APPLICATIVO_FRUITORE = "applicativoFruitore";
  62.    
  63.    
  64.    
  65. }