ConfigurationRFC7807.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.message.config;

  21. import java.io.Serializable;

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

  29. public class ConfigurationRFC7807 implements Serializable  {

  30.     private static final long serialVersionUID = 1L;



  31.     protected boolean useAcceptHeader;

  32.     protected boolean details;

  33.     protected boolean instance;

  34.     protected boolean govwayStatus;
  35.    
  36.     protected boolean govwayType;

  37.     protected boolean govwayTransactionId;

  38.     protected boolean type = true;

  39.     protected java.lang.String typeFormat = null;


  40.     public ConfigurationRFC7807() {
  41.     }

  42.     public boolean isUseAcceptHeader() {
  43.         return this.useAcceptHeader;
  44.     }

  45.     public boolean getUseAcceptHeader() {
  46.         return this.useAcceptHeader;
  47.     }

  48.     public void setUseAcceptHeader(boolean useAcceptHeader) {
  49.         this.useAcceptHeader = useAcceptHeader;
  50.     }

  51.     public boolean isDetails() {
  52.         return this.details;
  53.     }

  54.     public boolean getDetails() {
  55.         return this.details;
  56.     }

  57.     public void setDetails(boolean details) {
  58.         this.details = details;
  59.     }

  60.     public boolean isInstance() {
  61.         return this.instance;
  62.     }

  63.     public boolean getInstance() {
  64.         return this.instance;
  65.     }

  66.     public void setInstance(boolean instance) {
  67.         this.instance = instance;
  68.     }

  69.     public boolean isGovwayStatus() {
  70.         return this.govwayStatus;
  71.     }

  72.     public boolean getGovwayStatus() {
  73.         return this.govwayStatus;
  74.     }
  75.    
  76.     public void setGovwayStatus(boolean govwayStatus) {
  77.         this.govwayStatus = govwayStatus;
  78.     }

  79.     public boolean isGovwayType() {
  80.         return this.govwayType;
  81.     }

  82.     public boolean getGovwayType() {
  83.         return this.govwayType;
  84.     }
  85.    
  86.     public void setGovwayType(boolean govwayType) {
  87.         this.govwayType = govwayType;
  88.     }
  89.    
  90.     public boolean isGovwayTransactionId() {
  91.         return this.govwayTransactionId;
  92.     }

  93.     public void setGovwayTransactionId(boolean govwayTransactionId) {
  94.         this.govwayTransactionId = govwayTransactionId;
  95.     }
  96.    
  97.     public boolean isType() {
  98.         return this.type;
  99.     }

  100.     public boolean getType() {
  101.         return this.type;
  102.     }

  103.     public void setType(boolean type) {
  104.         this.type = type;
  105.     }

  106.     public java.lang.String getTypeFormat() {
  107.         return this.typeFormat;
  108.     }

  109.     public void setTypeFormat(java.lang.String typeFormat) {
  110.         this.typeFormat = typeFormat;
  111.     }

  112. }