com.googlecode.placesapiclient.client.connection.proxy.ProxyCredentials 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 ProxyCredentials {
private String proxyUsername;
private String proxyPassword;
public ProxyCredentials(String proxyUsername, String proxyPassword) {
this.proxyUsername = proxyUsername;
this.proxyPassword = proxyPassword;
}
public String getProxyUsername() {
return proxyUsername;
}
public String getProxyPassword() {
return proxyPassword;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy