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

liquibase.resource.ResourceAccessor Maven / Gradle / Ivy

There is a newer version: 4.30.0
Show newest version
package liquibase.resource;

import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.util.Enumeration;

/**
 * Abstracts file access so they can be read in a variety of manners.
 */
public interface ResourceAccessor {
    public InputStream getResourceAsStream(String file) throws IOException;

    public Enumeration getResources(String packageName) throws IOException;

    public ClassLoader toClassLoader();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy