org.expath.pkg.repo.XarSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pkg-java Show documentation
Show all versions of pkg-java Show documentation
Java Library implementing the core EXPath Packaging features
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