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

run.halo.app.plugin.SettingFetcher Maven / Gradle / Ivy

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