com.hivemq.spi.services.configuration.GeneralConfigurationService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hivemq-spi Show documentation
Show all versions of hivemq-spi Show documentation
The Service Provider Interfaces for developing HiveMQ plugins.
package com.hivemq.spi.services.configuration;
/**
* A Configuration service which allows to get information about the current General configuration
* and allows to change the global General configuration of HiveMQ at runtime.
*
* @author Christoph Schäbel
* @since 3.0
*/
public interface GeneralConfigurationService {
/**
* @return true
if the update check is enabled, false
otherwise
*/
boolean updateCheckEnabled();
void setUpdateCheckEnabled(boolean updateCheckEnabled);
}