CostantiAbstraction.java

/*
 * GovWay - A customizable API Gateway 
 * https://govway.org
 * 
 * Copyright (c) 2005-2024 Link.it srl (https://link.it).
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 3, as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */


package org.openspcoop2.protocol.abstraction.constants;

/**     
 * CostantiAbstraction
 *
 * @author Poli Andrea (poli@link.it)
 * @author $Author$
 * @version $Rev$, $Date$
 */
public class CostantiAbstraction {

	public static final String TEMPLATES_DIR = "templates";
	public static final String TEMPLATES_CORE_DIR = "core";
	public static final String TEMPLATES_EROGAZIONE_DIR = "erogazione";
	public static final String TEMPLATES_FRUIZIONE_DIR = "fruizione";
	public static final String TEMPLATES_PDD = "pdd";
	public static final String TEMPLATES_SOGGETTO = "soggetto";
	public static final String TEMPLATES_ACCORDI_PARTE_SPECIFICA = "asps";
	public static final String TEMPLATES_FRUITORE = "fruitore";
	public static final String TEMPLATES_SERVIZI_APPLICATIVI = "sa";
	public static final String TEMPLATES_PORTE_APPLICATIVE = "pa";
	public static final String TEMPLATES_PORTE_DELEGATE = "pd";
	
	public static final String TEMPLATE_FILE = "templates.zip";
	public static final String CSV_FORMAT_FILE = "csvFormat.properties";
	public static final String CSV_MAPPING_FILE = "csvMapping.properties";
	public static final String CSV_TEMPLATE_FILE = "csvTemplate.ftl";
	
	public static final String EROGAZIONI_DIR = "erogazioni";
	
	public static final String FRUIZIONI_DIR = "fruizioni";
	
	public static final String XML_EXTENSION = "xml";
	public static final String CSV_EXTENSION = "csv";
	public static final String FTL_EXTENSION = "ftl";
	public static final String ZIP_EXTENSION = "zip";
	
	
	public static final String EROGAZIONE_MAP_KEY_SERVIZIO = "servizio";
	public static final String EROGAZIONE_MAP_KEY_SOGGETTO = "soggetto";
	public static final String EROGAZIONE_MAP_KEY_FRUITORE = "fruitore";
	public static final String EROGAZIONE_MAP_KEY_FRUIZIONE = "fruizione";
	public static final String EROGAZIONE_MAP_KEY_APPLICATIVO_EROGATORE = "applicativoErogatore";
	public static final String EROGAZIONE_MAP_KEY_APPLICATIVO_FRUITORE = "applicativoFruitore";
	
	
	
}