de.eldoria.eldoutilities.config.ConfigSubscriber Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackson-configuration Show documentation
Show all versions of jackson-configuration Show documentation
Configuration file wrapper for the jackson-bukkit framework
The newest version!
/*
* SPDX-License-Identifier: LGPL-3.0-or-later
*
* Copyright (C) EldoriaRPG Team and Contributor
*/
package de.eldoria.eldoutilities.config;
/**
* This interface may be implemented by plugins in config classes.
*
* It provides hooks for read and write operations.
*/
public interface ConfigSubscriber {
default void postRead(JacksonConfig> config) {
}
default void preWrite(JacksonConfig> config) {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy