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

com.aeontronix.genesis.ResourceLoader Maven / Gradle / Ivy

There is a newer version: 1.0-beta1
Show newest version
package com.aeontronix.genesis;

import java.io.IOException;
import java.io.InputStream;
import java.util.Set;

public interface ResourceLoader {
    InputStream loadResource(String resourcePath) throws IOException;
    Set listFiles(String resourcePath) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy