com.github.linyuzai.plugin.autoconfigure.management.PluginPropertiesProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of concept-plugin-spring-boot-starter Show documentation
Show all versions of concept-plugin-spring-boot-starter Show documentation
Dynamic loading classes with external jar simply and gracefully
The newest version!
package com.github.linyuzai.plugin.autoconfigure.management;
import lombok.Data;
import java.util.List;
public interface PluginPropertiesProvider {
List getProperties(String group, String name);
@Data
class PluginPropertyEntry {
private String name;
private String value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy