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.monitor.engine.constants;

  21. /**
  22.  * Costanti
  23.  *
  24.  * @author Poli Andrea (apoli@link.it)
  25.  * @author $Author$
  26.  * @version $Rev$, $Date$
  27.  */
  28. public class Costanti {
  29.    
  30.     public static final String DIRECTORY_FILE_SYSTEM_REPOSITORY_EVENTI = "eventi";
  31.     public static final String DIRECTORY_FILE_SYSTEM_REPOSITORY_TRANSAZIONE = "transazioni";
  32.     public static final String DIRECTORY_FILE_SYSTEM_REPOSITORY_DIAGNOSTICO = "diagnostici";
  33.     public static final String DIRECTORY_FILE_SYSTEM_REPOSITORY_TRACCIA = "tracce";
  34.     public static final String DIRECTORY_FILE_SYSTEM_REPOSITORY_DUMP = "messaggi";
  35.     public static final String DIRECTORY_FILE_SYSTEM_REPOSITORY_TRANSAZIONE_APPLICATIVO_SERVER = "transazioni_sa";
  36.     public static final String DIRECTORY_FILE_SYSTEM_REPOSITORY_TRANSAZIONE_APPLICATIVO_SERVER_CONSEGNA_TERMINATA = "transazioni_sa_update_info";
  37.    
  38.     public static final String DIRECTORY_FILE_SYSTEM_REPOSITORY_DLQ = "dlq";
  39.    
  40.     public static final String PREFIX_FILE_SYSTEM_REPOSITORY_EVENTI = "Evento";
  41.     public static final String PREFIX_FILE_SYSTEM_REPOSITORY_TRANSAZIONE = "Transazione";
  42.     public static final String PREFIX_FILE_SYSTEM_REPOSITORY_DIAGNOSTICO = "Diagnostico";
  43.     public static final String PREFIX_FILE_SYSTEM_REPOSITORY_TRACCIA = "Traccia";
  44.     public static final String PREFIX_FILE_SYSTEM_REPOSITORY_DUMP = "Messaggio";
  45.     public static final String PREFIX_FILE_SYSTEM_REPOSITORY_TRANSAZIONE_APPLICATIVO_SERVER = "TransazioneAppServer";
  46.     public static final String PREFIX_FILE_SYSTEM_REPOSITORY_TRANSAZIONE_APPLICATIVO_SERVER_CONSEGNA_TERMINATA = "TransazioneUpdateInfoConsegna";
  47.    
  48.     public static final String EVENTO_FILE_SYSTEM_RECOVERY = "RecoveredFileSystem";
  49.    
  50.    
  51.     public static final String SERVIZIO_APPLICATIVO_ANONIMO = "Applicativo Anonimo";
  52.     public static final String INFORMAZIONE_NON_DISPONIBILE = "-";
  53.     public static final Integer INFORMAZIONE_VERSIONE_NON_DISPONIBILE = 0;
  54.     public static final Integer INFORMAZIONE_LATENZA_NON_DISPONIBILE = -1;
  55.     public static final Integer INFORMAZIONE_ESITO_NON_DISPONIBILE = -1;
  56.     public static final String TRANSAZIONE_SENZA_STATO = "Senza Stato";
  57.    
  58.     public static final String LABEL_ALLARMI_PARAMETRI = "Parametri";
  59.     public static final String LABEL_ALLARMI_VALORI_DI_SOGLIA = "Valori di Soglia";
  60.    
  61.    

  62.    
  63.    
  64. }