Example usage for org.apache.commons.httpclient HostConfiguration subclass-usage

List of usage examples for org.apache.commons.httpclient HostConfiguration subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.httpclient HostConfiguration subclass-usage.

Usage

From source file com.qpark.eip.core.spring.security.proxy.ProxyHostConfiguration.java

public class ProxyHostConfiguration extends HostConfiguration {
    private ProxyBean proxyBean;

    /**
     * @return the proxyBean.
     */

From source file com.eviware.soapui.impl.wsdl.support.http.SoapUIHostConfiguration.java

public class SoapUIHostConfiguration extends HostConfiguration {

    public static final String SOAPUI_SSL_CONFIG = "soapui.sslConfig";

    public SoapUIHostConfiguration() {
        super();

From source file com.wooki.services.utils.MyHostConfiguration.java

public class MyHostConfiguration extends HostConfiguration {

    private final String DELIMITER = ":";

    public synchronized String getProxyHostPlusPort() {

From source file org.mule.transport.http.MuleHostConfiguration.java

/**
 * Subclass of httpclient's {@link HostConfiguration} that retains its {@link Protocol} when
 * a new host is set via the URI.
 * 
 * It looks like we're not the only ones who stumbled over the HostConfiguration behaviour, see
 * http://issues.apache.org/jira/browse/HTTPCLIENT-634

From source file org.globus.axis.transport.commons.ExtendedHostConfiguration.java

public class ExtendedHostConfiguration extends HostConfiguration implements Cloneable {

    private String[] paramList;

    public ExtendedHostConfiguration(ExtendedHostConfiguration host) {
        super(host);

From source file org.eclipse.mylyn.internal.commons.net.CloneableHostConfiguration.java

/**
 * Based on org.apache.commons.httpclient.contrib.ssl.HostConfigurationWithStickyProtocol.
 * 
 * @author John Kristian
 * @author Steffen Pingel
 */

From source file com.zimbra.common.net.ProxyHostConfiguration.java

/**
 * HostConfiguration that includes proxy username/password
 */
public class ProxyHostConfiguration extends HostConfiguration {
    private String username;
    private String password;

From source file net.sf.antcontrib.net.httpclient.HostConfig.java

public class HostConfig extends HostConfiguration {

    public void setHost(String host) {
        setHost(host, getPort(), getProtocol());
    }

From source file ch.cyberduck.core.http.StickyHostConfiguration.java

/**
 * @version $Id$
 */
public class StickyHostConfiguration extends HostConfiguration {
    private static Logger log = Logger.getLogger(StickyHostConfiguration.class);

From source file org.elasticsearch.hadoop.rest.commonshttp.ProtocolAwareHostConfiguration.java

class ProtocolAwareHostConfiguration extends HostConfiguration {
    public ProtocolAwareHostConfiguration(HostConfiguration hostConfiguration) {
        super(hostConfiguration);
    }

    public Object clone() {