dev.alangomes.springspigot.ConfigurationPropertySource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spigot-spring-boot-starter Show documentation
Show all versions of spigot-spring-boot-starter Show documentation
Spring support for spigot plugins
The newest version!
package dev.alangomes.springspigot;
import org.bukkit.configuration.file.FileConfiguration;
import org.springframework.core.env.PropertySource;
class ConfigurationPropertySource extends PropertySource {
ConfigurationPropertySource(FileConfiguration source) {
super("config", source);
}
@Override
public Object getProperty(String s) {
return source.get(s);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy