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

com.binance.connector.futures.client.utils.ProxyAuth Maven / Gradle / Ivy

The newest version!
package com.binance.connector.futures.client.utils;

import okhttp3.Authenticator;
import java.net.Proxy;

public final class ProxyAuth {
    private Proxy proxy;
    private Authenticator auth;
    
    public ProxyAuth(Proxy proxy, Authenticator auth) {
        this.proxy = proxy;
        this.auth = auth;
    }

    public Proxy getProxy() {
        return proxy;
    }

    public Authenticator getAuth() {
        return auth;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy