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

com.github.attemper.alarm.ConfigAdapter Maven / Gradle / Ivy

The newest version!
package com.github.attemper.alarm;

public abstract class ConfigAdapter implements Config, Indexing {

    protected boolean enabled = true;

    public boolean isEnabled() {
        return enabled;
    }

    public ConfigAdapter setEnabled(boolean enabled) {
        this.enabled = enabled;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy