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

apoc.util.ApocUrlStreamHandlerFactory Maven / Gradle / Ivy

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