001package ch.qos.logback.access.model; 002 003import ch.qos.logback.core.model.Model; 004 005public class ConfigurationModel extends Model { 006 /** 007 * 008 */ 009 private static final long serialVersionUID = 5447825021342728679L; 010 011 public static final String INTERNAL_DEBUG_ATTR = "debug"; 012 013 String debug; 014 015 public String getDebug() { 016 return debug; 017 } 018 019 public void setDebug(String debug) { 020 this.debug = debug; 021 } 022 023}