Costanti.java
- /*
- * GovWay - A customizable API Gateway
- * https://govway.org
- *
- * Copyright (c) 2005-2025 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.monitor.engine.constants;
- /**
- * Costanti
- *
- * @author Poli Andrea (apoli@link.it)
- * @author $Author$
- * @version $Rev$, $Date$
- */
- public class Costanti {
-
- public static final String DIRECTORY_FILE_SYSTEM_REPOSITORY_EVENTI = "eventi";
- public static final String DIRECTORY_FILE_SYSTEM_REPOSITORY_TRANSAZIONE = "transazioni";
- public static final String DIRECTORY_FILE_SYSTEM_REPOSITORY_DIAGNOSTICO = "diagnostici";
- public static final String DIRECTORY_FILE_SYSTEM_REPOSITORY_TRACCIA = "tracce";
- public static final String DIRECTORY_FILE_SYSTEM_REPOSITORY_DUMP = "messaggi";
- public static final String DIRECTORY_FILE_SYSTEM_REPOSITORY_TRANSAZIONE_APPLICATIVO_SERVER = "transazioni_sa";
- public static final String DIRECTORY_FILE_SYSTEM_REPOSITORY_TRANSAZIONE_APPLICATIVO_SERVER_CONSEGNA_TERMINATA = "transazioni_sa_update_info";
-
- public static final String DIRECTORY_FILE_SYSTEM_REPOSITORY_DLQ = "dlq";
-
- public static final String PREFIX_FILE_SYSTEM_REPOSITORY_EVENTI = "Evento";
- public static final String PREFIX_FILE_SYSTEM_REPOSITORY_TRANSAZIONE = "Transazione";
- public static final String PREFIX_FILE_SYSTEM_REPOSITORY_DIAGNOSTICO = "Diagnostico";
- public static final String PREFIX_FILE_SYSTEM_REPOSITORY_TRACCIA = "Traccia";
- public static final String PREFIX_FILE_SYSTEM_REPOSITORY_DUMP = "Messaggio";
- public static final String PREFIX_FILE_SYSTEM_REPOSITORY_TRANSAZIONE_APPLICATIVO_SERVER = "TransazioneAppServer";
- public static final String PREFIX_FILE_SYSTEM_REPOSITORY_TRANSAZIONE_APPLICATIVO_SERVER_CONSEGNA_TERMINATA = "TransazioneUpdateInfoConsegna";
-
- public static final String EVENTO_FILE_SYSTEM_RECOVERY = "RecoveredFileSystem";
-
-
- public static final String SERVIZIO_APPLICATIVO_ANONIMO = "Applicativo Anonimo";
- public static final String INFORMAZIONE_NON_DISPONIBILE = "-";
- public static final Integer INFORMAZIONE_VERSIONE_NON_DISPONIBILE = 0;
- public static final Integer INFORMAZIONE_LATENZA_NON_DISPONIBILE = -1;
- public static final Integer INFORMAZIONE_ESITO_NON_DISPONIBILE = -1;
- public static final String TRANSAZIONE_SENZA_STATO = "Senza Stato";
-
- public static final String LABEL_ALLARMI_PARAMETRI = "Parametri";
- public static final String LABEL_ALLARMI_VALORI_DI_SOGLIA = "Valori di Soglia";
-
-
-
-
- }