apoc.util.ApocUrlStreamHandlerFactory 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;
import java.net.URLStreamHandler;
import java.net.spi.URLStreamHandlerProvider;
public class ApocUrlStreamHandlerFactory extends URLStreamHandlerProvider
{
@Override
public URLStreamHandler createURLStreamHandler(String protocol) {
SupportedProtocols supportedProtocol = FileUtils.of(protocol);
return supportedProtocol == null ? null : FileUtils.createURLStreamHandler(supportedProtocol);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy