Methods Summary |
---|
public java.lang.String | getNonProxyHosts()
if (nonProxyHosts == null) {
nonProxyHosts = AxisProperties.getProperty("http.nonProxyHosts");
if (nonProxyHosts == null)
nonProxyHosts = emptyString;
}
return nonProxyHosts;
|
public java.lang.String | getProxyHost()
if (proxyHost == null) {
proxyHost = AxisProperties.getProperty("http.proxyHost");
if (proxyHost == null)
proxyHost = emptyString;
}
return proxyHost;
|
public java.lang.String | getProxyPassword()
if (proxyPassword == null) {
proxyPassword = AxisProperties.getProperty("http.proxyPassword");
if (proxyPassword == null)
proxyPassword = emptyString;
}
return proxyPassword;
|
public java.lang.String | getProxyPort()
if (proxyPort == null) {
proxyPort = AxisProperties.getProperty("http.proxyPort");
if (proxyPort == null)
proxyPort = emptyString;
}
return proxyPort;
|
public java.lang.String | getProxyUser()
if (proxyUser == null) {
proxyUser = AxisProperties.getProperty("http.proxyUser");
if (proxyUser == null)
proxyUser = emptyString;
}
return proxyUser;
|