ConfigurazioneNodiRuntimeBYOKRemoteConfig.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.pdd.config;

  21. import org.openspcoop2.pdd.core.CostantiPdD;
  22. import org.openspcoop2.pdd.core.jmx.ConfigurazioneSistema;
  23. import org.openspcoop2.pdd.core.jmx.StatoServiziJMXResource;
  24. import org.openspcoop2.utils.jmx.CostantiJMX;

  25. /**
  26.  * ConfigurazioneNodiRuntimeProperties
  27.  *
  28.  * @author Poli Andrea (apoli@link.it)
  29.  * @author $Author$
  30.  * @version $Rev$, $Date$
  31.  */
  32. public class ConfigurazioneNodiRuntimeBYOKRemoteConfig {

  33.     private String type = CostantiJMX.JMX_TYPE;
  34.    
  35.     private String resourceStatoServiziPdd = CostantiPdD.JMX_STATO_SERVIZI_PDD;
  36.     private String attributeComponentePD = StatoServiziJMXResource.COMPONENTE_PD;
  37.    
  38.     private String resourceConfigurazioneSistema = CostantiPdD.JMX_CONFIGURAZIONE_SISTEMA;
  39.     private String methodWrap = ConfigurazioneSistema.BYOK_WRAP_BASE64;
  40.     private String methodUnwrap = ConfigurazioneSistema.BYOK_UNWRAP_BASE64;

  41.     public String getType() {
  42.         return this.type;
  43.     }
  44.     public void setType(String type) {
  45.         this.type = type;
  46.     }

  47.     public String getResourceStatoServiziPdd() {
  48.         return this.resourceStatoServiziPdd;
  49.     }
  50.     public void setResourceStatoServiziPdd(String resourceStatoServiziPdd) {
  51.         this.resourceStatoServiziPdd = resourceStatoServiziPdd;
  52.     }
  53.     public String getAttributeComponentePD() {
  54.         return this.attributeComponentePD;
  55.     }
  56.     public void setAttributeComponentePD(String attributeComponentePD) {
  57.         this.attributeComponentePD = attributeComponentePD;
  58.     }

  59.     public String getResourceConfigurazioneSistema() {
  60.         return this.resourceConfigurazioneSistema;
  61.     }
  62.     public void setResourceConfigurazioneSistema(String resourceConfigurazioneSistema) {
  63.         this.resourceConfigurazioneSistema = resourceConfigurazioneSistema;
  64.     }
  65.     public String getMethodWrap() {
  66.         return this.methodWrap;
  67.     }
  68.     public void setMethodWrap(String methodWrap) {
  69.         this.methodWrap = methodWrap;
  70.     }
  71.     public String getMethodUnwrap() {
  72.         return this.methodUnwrap;
  73.     }
  74.     public void setMethodUnwrap(String methodUnwrap) {
  75.         this.methodUnwrap = methodUnwrap;
  76.     }
  77. }