
com.github.kristofa.servicepluginloader.ServicePluginsClassPathProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-plugin-loader Show documentation
Show all versions of service-plugin-loader Show documentation
Wrapper around java.util.ServiceLoader
package com.github.kristofa.servicepluginloader;
import java.util.Collection;
/**
* Provides the classpath for each of the plugins of our application.
*
* @author kristof
*/
public interface ServicePluginsClassPathProvider {
/**
* Gets classpaths for each of the plugins of our application.
*
* @return Collection which contains 1 entry for each plugin. Each entry contains the classpath for a plugin.
*/
Collection getPlugins();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy