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

org.expath.pkg.repo.XarSource Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package org.expath.pkg.repo;

import java.io.IOException;
import java.io.InputStream;
import java.net.URI;

public interface XarSource {
    URI getURI();
    boolean isValid();
    InputStream newInputStream() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy