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

org.meridor.stecker.interfaces.ResourcesScanner Maven / Gradle / Ivy

Go to download

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