io.micronaut.configuration.clickhouse.EnableConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-clickhouse Show documentation
Show all versions of micronaut-clickhouse Show documentation
This is integration between Micronaut and ClickHouse.
package io.micronaut.configuration.clickhouse;
/**
* Configuration for enabled properties
*
* @author Anton Kurako (GoodforGod)
* @since 23.10.2020
*/
public class EnableConfiguration {
private boolean enabled;
public EnableConfiguration(boolean enabled) {
this.enabled = enabled;
}
public boolean isEnabled() {
return enabled;
}
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy