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

com.github.davidmoten.odata.client.Proxy Maven / Gradle / Ivy

package com.github.davidmoten.odata.client;

import org.apache.http.HttpHost;
import org.apache.http.client.config.RequestConfig;

public class Proxy {

    public static void main(String[] args) {
        String host = "";
        int port = 0;
        String scheme = "https";
        HttpHost proxy = new HttpHost(host, port, scheme);
        RequestConfig.custom().setProxy(proxy);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy