All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.schedulerx.worker.log.appender.LogConfig Maven / Gradle / Ivy

There is a newer version: 1.12.2
Show newest version
package com.alibaba.schedulerx.worker.log.appender;

/**
 * @author xiaomeng.hxm
 *
 */
public enum LogConfig {
    INSTANCE;

    private volatile boolean enable;
    private volatile String config;
    private volatile String type;
    private volatile String level;

    public boolean isEnable() {
        return enable;
    }

    public void setEnable(boolean enable) {
        this.enable = enable;
    }

    public String getConfig() {
        return config;
    }

    public void setConfig(String config) {
        this.config = config;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getLevel() {
        return level;
    }

    public void setLevel(String level) {
        this.level = level;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy