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

io.intercom.api.HttpConnectorSupplier Maven / Gradle / Ivy

The newest version!
package io.intercom.api;

import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.URI;

public interface HttpConnectorSupplier {

    HttpURLConnection connect(URI uri) throws IOException;

    HttpConnectorSupplier defaultSupplier = new HttpConnectorSupplier() {
        public HttpURLConnection connect(URI uri) throws IOException {
            return (HttpURLConnection) uri.toURL().openConnection();
        }
    };
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy