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

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

package org.meridor.stecker.interfaces;

import java.nio.file.Path;
import java.util.List;

public interface ResourcesAware {

    /**
     * Returns resources for specific plugin
     *
     * @param pluginName plugin name
     * @return a list of resources
     */
    List getResources(String pluginName);

    /**
     * Returns all resources
     *
     * @return a list of resources
     */
    List getResources();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy