liquibase.resource.URIResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.resource;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
public class URIResource extends AbstractResource {
public URIResource(String path, URI uri) {
super(path, uri);
}
/**
* Cannot determine if the URI exists, return true
*/
@Override
public boolean exists() {
return true;
}
@Override
public Resource resolve(String other) {
return new URIResource(resolvePath(other), URI.create(getUri().toString() + "/" + other));
}
@Override
public Resource resolveSibling(String other) {
return new URIResource(resolveSiblingPath(other), URI.create(getUri().toString().replaceFirst("/[^/]*$", "") + "/" + other));
}
@Override
public InputStream openInputStream() throws IOException {
return getUri().toURL().openStream();
}
}