run.halo.app.plugin.SettingFetcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
API of halo project, connecting by other projects.
The newest version!
package run.halo.app.plugin;
import com.fasterxml.jackson.databind.JsonNode;
import java.util.Map;
import java.util.Optional;
/**
* SettingFetcher must be a class instead of an interface due to backward compatibility.
*
* @author johnniang
*/
public abstract class SettingFetcher {
public abstract Optional fetch(String group, Class clazz);
public abstract JsonNode get(String group);
public abstract Map getValues();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy