com.binance.connector.futures.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-futures-connector-java Show documentation
Show all versions of binance-futures-connector-java Show documentation
lightweight connector to Futures API
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;
}
}