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

com.sun.webkit.network.data.Handler Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
 */
package com.sun.webkit.network.data;

import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
import java.net.URLStreamHandler;

public final class Handler extends URLStreamHandler {

    public Handler() {
    }


    @Override
    protected URLConnection openConnection(URL url) throws IOException {
        return new DataURLConnection(url);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy