com.googlecode.placesapiclient.client.connection.proxy.ProxyConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of places-api-client Show documentation
Show all versions of places-api-client Show documentation
Java client for Google Places service
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