GroupByConfiguration.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.sdk.plugins;

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

  29.     private boolean hideGatewayRole = false;
  30.    
  31.     private boolean hideProtocol = false;
  32.    
  33.     private boolean hideProvider = false;
  34.    
  35.     private boolean hideSubscriber = false;
  36.    
  37.     private boolean hideService = false;
  38.     private boolean hideAction = false;
  39.    
  40.     private boolean hideApplication = false;
  41.    
  42.     private boolean hideSenderIdentity = false;
  43.    
  44.     private boolean hideToken = false;
  45.     private boolean hideTokenClaims = false;
  46.    
  47.     public boolean isHideToken() {
  48.         return this.hideToken;
  49.     }

  50.     public void setHideToken(boolean hideToken) {
  51.         this.hideToken = hideToken;
  52.     }

  53.     public boolean isHideTokenClaims() {
  54.         return this.hideTokenClaims;
  55.     }

  56.     public void setHideTokenClaims(boolean hideTokenClaims) {
  57.         this.hideTokenClaims = hideTokenClaims;
  58.     }

  59.     public boolean isHideSenderIdentity() {
  60.         return this.hideSenderIdentity;
  61.     }

  62.     public void setHideSenderIdentity(boolean hideSenderIdentity) {
  63.         this.hideSenderIdentity = hideSenderIdentity;
  64.     }

  65.     public boolean isHideApplication() {
  66.         return this.hideApplication;
  67.     }

  68.     public void setHideApplication(boolean hideApplication) {
  69.         this.hideApplication = hideApplication;
  70.     }

  71.     public boolean isHideService() {
  72.         return this.hideService;
  73.     }

  74.     public void setHideService(boolean hideService) {
  75.         this.hideService = hideService;
  76.     }

  77.     public boolean isHideAction() {
  78.         return this.hideAction;
  79.     }

  80.     public void setHideAction(boolean hideAction) {
  81.         this.hideAction = hideAction;
  82.     }

  83.     public boolean isHideProvider() {
  84.         return this.hideProvider;
  85.     }

  86.     public void setHideProvider(boolean hideProvider) {
  87.         this.hideProvider = hideProvider;
  88.     }

  89.     public boolean isHideSubscriber() {
  90.         return this.hideSubscriber;
  91.     }

  92.     public void setHideSubscriber(boolean hideSubscriber) {
  93.         this.hideSubscriber = hideSubscriber;
  94.     }

  95.     public boolean isHideProtocol() {
  96.         return this.hideProtocol;
  97.     }

  98.     public void setHideProtocol(boolean hideProtocol) {
  99.         this.hideProtocol = hideProtocol;
  100.     }

  101.     public boolean isHideGatewayRole() {
  102.         return this.hideGatewayRole;
  103.     }

  104.     public void setHideGatewayRole(boolean hideGatewayRole) {
  105.         this.hideGatewayRole = hideGatewayRole;
  106.     }
  107.    
  108. }