apoc.util.google.cloud.GCStorageURLStreamHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apoc-common Show documentation
Show all versions of apoc-common Show documentation
Data types package for Neo4j Procedures
package apoc.util.google.cloud;
import java.net.URL;
import java.net.URLConnection;
import java.net.URLStreamHandler;
public class GCStorageURLStreamHandler extends URLStreamHandler {
public GCStorageURLStreamHandler() {}
@Override
protected URLConnection openConnection(final URL url) {
return new GCStorageURLConnection(url);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy