CostantiServizioControlloTraffico.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.core.controllo_traffico.driver;

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

  29.     public static final String OPERAZIONE_REGISTER_POLICY = "registerPolicy";
  30.    
  31.     public static final String OPERAZIONE_GET_POLICY = "getPolicy";
  32.    
  33.     public static final String OPERAZIONE_REGISTER_START_REQUEST = "registerStartRequest";
  34.    
  35.     public static final String OPERAZIONE_UPDATE_START_REQUEST = "updateStartRequest";
  36.    
  37.     public static final String OPERAZIONE_REGISTER_STOP_REQUEST = "registerStopRequest";
  38.    
  39.     public static final String OPERAZIONE_SIZE_ACTIVE_THREADS_POLICY = "sizeActiveThreadsPolicy";
  40.    
  41.     public static final String OPERAZIONE_PRINT_KEYS_POLICY = "printKeysPolicy";
  42.    
  43.     public static final String OPERAZIONE_PRINT_INFO_POLICY = "printInfoPolicy";
  44.    
  45.     public static final String OPERAZIONE_REMOVE_ACTIVE_THREADS_POLICY = "removeActiveThreadsPolicy";
  46.    
  47.     public static final String OPERAZIONE_REMOVE_ACTIVE_THREADS_POLICY_UNSAFE = "removeActiveThreadsPolicyUnsafe";
  48.    
  49.     public static final String OPERAZIONE_REMOVE_ALL_ACTIVE_THREADS_POLICY = "removeAllActiveThreadsPolicy";
  50.    
  51.     public static final String OPERAZIONE_RESET_COUNTERS_ACTIVE_THREADS_POLICY = "resetCountersActiveThreadsPolicy";
  52.    
  53.     public static final String OPERAZIONE_RESET_COUNTERS_ALL_ACTIVE_THREADS_POLICY = "resetCountersAllActiveThreadsPolicy";
  54.    
  55.     public static final String PARAMETER_ACTIVE_ID = "activeId";
  56.    
  57.     public static final String PARAMETER_GROUP_BY_ID = "groupById";
  58.    
  59.     public static final String PARAMETER_MISURAZIONI_TRANSAZIONE = "misurazioniTransazione";
  60.    
  61.     public static final String PARAMETER_APPLICABILE = "applicabile";
  62.    
  63.     public static final String PARAMETER_VIOLATA = "violata";
  64.    
  65.     public static final String PARAMETER_SUM = "sum";
  66.    
  67.     public static final String PARAMETER_SEPARATOR = "separator";
  68. }