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

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

  29.     private String policyNegoziazione;
  30.    
  31.     private String policyValidazioneDynamicDiscovery;
  32.     private String policyValidazioneJwt;
  33.     private String policyValidazioneIntrospection;
  34.     private String policyValidazioneUserInfo;
  35.    
  36.     private String attributeAuthority;
  37.     private String attributeAuthorityResponseJwt;
  38.    
  39.     public String getPolicyNegoziazione() {
  40.         return this.policyNegoziazione;
  41.     }
  42.     public void setPolicyNegoziazione(String policyNegoziazione) {
  43.         this.policyNegoziazione = policyNegoziazione;
  44.     }
  45.    
  46.     public String getPolicyValidazioneDynamicDiscovery() {
  47.         return this.policyValidazioneDynamicDiscovery;
  48.     }
  49.     public void setPolicyValidazioneDynamicDiscovery(String policyValidazioneDynamicDiscovery) {
  50.         this.policyValidazioneDynamicDiscovery = policyValidazioneDynamicDiscovery;
  51.     }
  52.     public String getPolicyValidazioneJwt() {
  53.         return this.policyValidazioneJwt;
  54.     }
  55.     public void setPolicyValidazioneJwt(String policyValidazioneJwt) {
  56.         this.policyValidazioneJwt = policyValidazioneJwt;
  57.     }
  58.     public String getPolicyValidazioneIntrospection() {
  59.         return this.policyValidazioneIntrospection;
  60.     }
  61.     public void setPolicyValidazioneIntrospection(String policyValidazioneIntrospection) {
  62.         this.policyValidazioneIntrospection = policyValidazioneIntrospection;
  63.     }
  64.     public String getPolicyValidazioneUserInfo() {
  65.         return this.policyValidazioneUserInfo;
  66.     }
  67.     public void setPolicyValidazioneUserInfo(String policyValidazioneUserInfo) {
  68.         this.policyValidazioneUserInfo = policyValidazioneUserInfo;
  69.     }
  70.    
  71.     public String getAttributeAuthority() {
  72.         return this.attributeAuthority;
  73.     }
  74.     public void setAttributeAuthority(String attributeAuthority) {
  75.         this.attributeAuthority = attributeAuthority;
  76.     }
  77.     public String getAttributeAuthorityResponseJwt() {
  78.         return this.attributeAuthorityResponseJwt;
  79.     }
  80.     public void setAttributeAuthorityResponseJwt(String attributeAuthorityResponseJwt) {
  81.         this.attributeAuthorityResponseJwt = attributeAuthorityResponseJwt;
  82.     }
  83. }