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