ch.qos.logback.solon.SolonPropertyModel Maven / Gradle / Ivy
package ch.qos.logback.solon;
import ch.qos.logback.core.model.NamedModel;
/**
* @author noear
* @since 2.3
*/
public class SolonPropertyModel extends NamedModel {
private String scope;
private String defaultValue;
private String source;
String getScope() {
return this.scope;
}
void setScope(String scope) {
this.scope = scope;
}
String getDefaultValue() {
return this.defaultValue;
}
void setDefaultValue(String defaultValue) {
this.defaultValue = defaultValue;
}
String getSource() {
return this.source;
}
void setSource(String source) {
this.source = source;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy