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

apoc.util.google.cloud.GCStorageURLStreamHandler Maven / Gradle / Ivy

There is a newer version: 5.25.1
Show newest version
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