AppenderProperty.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.lib.audit.dao;

  21. import java.io.Serializable;


  22. /**
  23.  * Configurazione dell'appender
  24.  *
  25.  *
  26.  * @author Andrea Poli (apoli@link.it)
  27.  * @author Stefano Corallo (corallo@link.it)
  28.  * @author Sandra Giangrandi (sandra@link.it)
  29.  * @author $Author$
  30.  * @version $Rev$, $Date$
  31.  *
  32.  */
  33. public class AppenderProperty implements Serializable {

  34.     /**
  35.      *
  36.      */
  37.     private static final long serialVersionUID = 537633473927936308L;
  38.    
  39.     private String name;
  40.     private String value;
  41.     private long idAppender;
  42.     private long id;
  43.    
  44.     public String getName() {
  45.         return this.name;
  46.     }
  47.     public void setName(String name) {
  48.         this.name = name;
  49.     }
  50.     public String getValue() {
  51.         return this.value;
  52.     }
  53.     public void setValue(String value) {
  54.         this.value = value;
  55.     }
  56.     public long getIdAppender() {
  57.         return this.idAppender;
  58.     }
  59.     public void setIdAppender(long idAppender) {
  60.         this.idAppender = idAppender;
  61.     }
  62.    
  63.    
  64.     public long getId() {
  65.         return this.id;
  66.     }
  67.     public void setId(long id) {
  68.         this.id = id;
  69.     }

  70.    
  71. }