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

net.dongliu.commons.request.HttpProxy Maven / Gradle / Ivy

package net.dongliu.commons.request;

/**
 * http proxy
 *
 * @author Dong Liu
 */
public class HttpProxy {
    private String host;
    private int port;
    private String userName;
    private String password;

    public String getHost() {
        return host;
    }

    public void setHost(String host) {
        this.host = host;
    }

    public int getPort() {
        return port;
    }

    public void setPort(int port) {
        this.port = port;
    }

    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy