![JAR search and dependency download from the Maven repository](/logo.png)
org.meridor.stecker.interfaces.ResourcesScanner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stecker-plugin-loader Show documentation
Show all versions of stecker-plugin-loader Show documentation
This is a plugin loading library. Its main purpose is to load extension point implementations from
provided plugins.
The newest version!
package org.meridor.stecker.interfaces;
import org.meridor.stecker.PluginException;
import java.nio.file.Path;
import java.util.List;
/**
* Scans specified path for resources and returns a list of matching resources
*/
public interface ResourcesScanner {
/**
* Does the scanning
*
* @param path depending on context can be a file or directory path
* @return a list of matching resources
* @throws org.meridor.stecker.PluginException when something goes wrong during resources scanning
*/
List scan(Path path) throws PluginException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy