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

com.googlecode.placesapiclient.client.connection.proxy.ProxyConfiguration Maven / Gradle / Ivy

The newest version!
package com.googlecode.placesapiclient.client.connection.proxy;

/**
 */
public class ProxyConfiguration {

    private String proxyHost;
    private String proxyPort;
    private ProxyCredentials proxyCredentials;

    public ProxyConfiguration(String proxyHost, String proxyPort) {
        this.proxyHost = proxyHost;
        this.proxyPort = proxyPort;
    }

    public ProxyCredentials getProxyCredentials() {
        return proxyCredentials;
    }

    public void setProxyCredentials(ProxyCredentials proxyCredentials) {
        this.proxyCredentials = proxyCredentials;
    }

    public String getProxyHost() {
        return proxyHost;
    }

    public void setProxyHost(String proxyHost) {
        this.proxyHost = proxyHost;
    }

    public String getProxyPort() {
        return proxyPort;
    }

    public void setProxyPort(String proxyPort) {
        this.proxyPort = proxyPort;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy