AboutCostanti.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.web.ctrlstat.servlet.about;

  21. import java.util.List;
  22. import java.util.ArrayList;

  23. import org.openspcoop2.pdd.core.CostantiPdD;
  24. import org.openspcoop2.web.lib.mvc.ForwardParams;

  25. /**
  26.  * AboutCostanti
  27.  *
  28.  * @author Poli Andrea (apoli@link.it)
  29.  * @author Pintori Giuliano (pintori@link.it)
  30.  * @author $Author$
  31.  * @version $Rev$, $Date$
  32.  */
  33. public class AboutCostanti {
  34.    
  35.     private AboutCostanti() {}

  36.     /* OBJECT NAME */

  37.     public static final String OBJECT_NAME_ABOUT = "about";

  38.     public static final ForwardParams TIPO_OPERAZIONE_ABOUT = ForwardParams.OTHER("");

  39.     /* SERVLET NAME */

  40.     public static final String SERVLET_NAME_ABOUT = OBJECT_NAME_ABOUT+".do";
  41.     private static final List<String> SERVLET_ABOUT = new ArrayList<>();
  42.     public static List<String> getServletAbout() {
  43.         return SERVLET_ABOUT;
  44.     }
  45.     static{
  46.         SERVLET_ABOUT.add(SERVLET_NAME_ABOUT);
  47.     }
  48.    
  49.     /* LABEL */
  50.     public static final String LABEL_ABOUT = "Informazioni";
  51.     public static final String LABEL_PRODOTTO = "Prodotto";
  52.     public static final String LABEL_VERSIONE = "Versione";
  53.     public static final String LABEL_SITO = "Sito";
  54.    
  55.     public static final String LABEL_COPYRIGHT = "Copyright";
  56.     public static final String LABEL_COPYRIGHT_VALUE = CostantiPdD.OPENSPCOOP2_COPYRIGHT;
  57.    
  58.     public static final String LABEL_LICENZA = "Licenza";
  59.     public static final String LICENSE = CostantiPdD.OPENSPCOOP2_LICENSE;
  60.    
  61.     public static final String LABEL_PARAMETRO_ABOUT_INFO = "Licenza";
  62.     public static final String BUTTON = "Aggiorna Licenza";
  63.     public static final String PARAMETRO_ABOUT_INFO = "info";
  64.     public static final String PARAMETRO_ABOUT_INFO_FINISH = "infoFinish";
  65. }