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

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

There is a newer version: 3.2.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy