FileDocCategorySizeDatePackage
DefaultHTTPSTransportClientProperties.javaAPI DocApache Axis 1.42467Sat Apr 22 18:57:28 BST 2006org.apache.axis.components.net

DefaultHTTPSTransportClientProperties

public class DefaultHTTPSTransportClientProperties extends DefaultHTTPTransportClientProperties
author
Richard A. Sitze

Fields Summary
Constructors Summary
Methods Summary
public java.lang.StringgetNonProxyHosts()

see
org.apache.axis.components.net.TransportClientProperties#getNonProxyHosts()

        if (nonProxyHosts == null) {
            nonProxyHosts = AxisProperties.getProperty("https.nonProxyHosts");
            super.getNonProxyHosts();
        }
        return nonProxyHosts;
    
public java.lang.StringgetProxyHost()

see
org.apache.axis.components.net.TransportClientProperties#getProxyHost()

        if (proxyHost == null) {
            proxyHost = AxisProperties.getProperty("https.proxyHost");
            super.getProxyHost();
        }
        return proxyHost;
    
public java.lang.StringgetProxyPassword()

see
org.apache.axis.components.net.TransportClientProperties#getPassword()

        if (proxyPassword == null) {
            proxyPassword = AxisProperties.getProperty("https.proxyPassword");
            super.getProxyPassword();
        }
        return proxyPassword;
    
public java.lang.StringgetProxyPort()

see
org.apache.axis.components.net.TransportClientProperties#getPort()

        if (proxyPort == null) {
            proxyPort = AxisProperties.getProperty("https.proxyPort");
            super.getProxyPort();
        }
        return proxyPort;
    
public java.lang.StringgetProxyUser()

see
org.apache.axis.components.net.TransportClientProperties#getUser()

        if (proxyUser == null) {
            proxyUser = AxisProperties.getProperty("https.proxyUser");
            super.getProxyUser();
        }
        return proxyUser;