com.binance.connector.client.utils.ProxyAuth Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance-connector-java Show documentation
Show all versions of binance-connector-java Show documentation
lightweight connector to API
package com.binance.connector.client.utils;
import java.net.Proxy;
import okhttp3.Authenticator;
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;
}
}