org.apache.commons.httpclient.HostConfiguration.getLocalAddress()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(9.1k)|赞(0)|评价(0)|浏览(142)

本文整理了Java中org.apache.commons.httpclient.HostConfiguration.getLocalAddress()方法的一些代码示例,展示了HostConfiguration.getLocalAddress()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HostConfiguration.getLocalAddress()方法的具体详情如下:
包路径:org.apache.commons.httpclient.HostConfiguration
类名称:HostConfiguration
方法名:getLocalAddress

HostConfiguration.getLocalAddress介绍

[英]Return the local address to be used when creating connections. If this is unset, the default address should be used.
[中]返回创建连接时要使用的本地地址。如果未设置,则应使用默认地址。

代码示例

代码示例来源:origin: commons-httpclient/commons-httpclient

private void init(final HostConfiguration hostConfiguration) {
  // wrap all of the assignments in a synchronized block to avoid
  // having to negotiate the monitor for each method call
  synchronized (hostConfiguration) {
    try {
      if (hostConfiguration.host != null) {
        this.host = (HttpHost) hostConfiguration.host.clone();
      } else {
        this.host = null;
      }
      if (hostConfiguration.proxyHost != null) {
        this.proxyHost = (ProxyHost) hostConfiguration.proxyHost.clone();
      } else {
        this.proxyHost = null;
      }
      this.localAddress = hostConfiguration.getLocalAddress();
      this.params = (HostParams)hostConfiguration.getParams().clone();
    } catch (CloneNotSupportedException e) {
      throw new IllegalArgumentException("Host configuration could not be cloned");
    }
  }        
}

代码示例来源:origin: commons-httpclient/commons-httpclient

/**
 * Creates a new HTTP connection for the given host configuration.
 * 
 * @param hostConfiguration the host/proxy/protocol to use
 */
public HttpConnection(HostConfiguration hostConfiguration) {
  this(hostConfiguration.getProxyHost(),
     hostConfiguration.getProxyPort(),
     hostConfiguration.getHost(),
     hostConfiguration.getPort(),
     hostConfiguration.getProtocol());
  this.localAddress = hostConfiguration.getLocalAddress();
}

代码示例来源:origin: commons-httpclient/commons-httpclient

httpConnection.setPort(hostConfiguration.getPort());
httpConnection.setProtocol(hostConfiguration.getProtocol());
httpConnection.setLocalAddress(hostConfiguration.getLocalAddress());

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-httpclient

private void init(final HostConfiguration hostConfiguration) {
  // wrap all of the assignments in a synchronized block to avoid
  // having to negotiate the monitor for each method call
  synchronized (hostConfiguration) {
    try {
      if (hostConfiguration.host != null) {
        this.host = (HttpHost) hostConfiguration.host.clone();
      } else {
        this.host = null;
      }
      if (hostConfiguration.proxyHost != null) {
        this.proxyHost = (ProxyHost) hostConfiguration.proxyHost.clone();
      } else {
        this.proxyHost = null;
      }
      this.localAddress = hostConfiguration.getLocalAddress();
      this.params = (HostParams)hostConfiguration.getParams().clone();
    } catch (CloneNotSupportedException e) {
      throw new IllegalArgumentException("Host configuration could not be cloned");
    }
  }        
}

代码示例来源:origin: org.wso2.commons-httpclient/commons-httpclient

private void init(final HostConfiguration hostConfiguration) {
  // wrap all of the assignments in a synchronized block to avoid
  // having to negotiate the monitor for each method call
  synchronized (hostConfiguration) {
    try {
      if (hostConfiguration.host != null) {
        this.host = (HttpHost) hostConfiguration.host.clone();
      } else {
        this.host = null;
      }
      if (hostConfiguration.proxyHost != null) {
        this.proxyHost = (ProxyHost) hostConfiguration.proxyHost.clone();
      } else {
        this.proxyHost = null;
      }
      this.localAddress = hostConfiguration.getLocalAddress();
      this.params = (HostParams)hostConfiguration.getParams().clone();
    } catch (CloneNotSupportedException e) {
      throw new IllegalArgumentException("Host configuration could not be cloned");
    }
  }        
}

代码示例来源:origin: org.apache.commons/com.springsource.org.apache.commons.httpclient

private void init(final HostConfiguration hostConfiguration) {
  // wrap all of the assignments in a synchronized block to avoid
  // having to negotiate the monitor for each method call
  synchronized (hostConfiguration) {
    try {
      if (hostConfiguration.host != null) {
        this.host = (HttpHost) hostConfiguration.host.clone();
      } else {
        this.host = null;
      }
      if (hostConfiguration.proxyHost != null) {
        this.proxyHost = (ProxyHost) hostConfiguration.proxyHost.clone();
      } else {
        this.proxyHost = null;
      }
      this.localAddress = hostConfiguration.getLocalAddress();
      this.params = (HostParams)hostConfiguration.getParams().clone();
    } catch (CloneNotSupportedException e) {
      throw new IllegalArgumentException("Host configuration could not be cloned");
    }
  }        
}

代码示例来源:origin: org.apache.commons/httpclient

private void init(final HostConfiguration hostConfiguration) {
  // wrap all of the assignments in a synchronized block to avoid
  // having to negotiate the monitor for each method call
  synchronized (hostConfiguration) {
    try {
      if (hostConfiguration.host != null) {
        this.host = (HttpHost) hostConfiguration.host.clone();
      } else {
        this.host = null;
      }
      if (hostConfiguration.proxyHost != null) {
        this.proxyHost = (ProxyHost) hostConfiguration.proxyHost.clone();
      } else {
        this.proxyHost = null;
      }
      this.localAddress = hostConfiguration.getLocalAddress();
      this.params = (HostParams)hostConfiguration.getParams().clone();
    } catch (CloneNotSupportedException e) {
      throw new IllegalArgumentException("Host configuration could not be cloned");
    }
  }        
}

代码示例来源:origin: org.mule.transports/mule-transport-http

/**
 * Creates a new HTTP connection for the given host configuration.
 *
 * @param hostConfiguration the host/proxy/protocol to use
 */
public HttpConnection(HostConfiguration hostConfiguration) {
  this(hostConfiguration.getProxyHost(),
     hostConfiguration.getProxyPort(),
     hostConfiguration.getHost(),
     hostConfiguration.getPort(),
     hostConfiguration.getProtocol());
  this.localAddress = hostConfiguration.getLocalAddress();
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-httpclient

/**
 * Creates a new HTTP connection for the given host configuration.
 * 
 * @param hostConfiguration the host/proxy/protocol to use
 */
public HttpConnection(HostConfiguration hostConfiguration) {
  this(hostConfiguration.getProxyHost(),
     hostConfiguration.getProxyPort(),
     hostConfiguration.getHost(),
     hostConfiguration.getPort(),
     hostConfiguration.getProtocol());
  this.localAddress = hostConfiguration.getLocalAddress();
}

代码示例来源:origin: org.zaproxy/zap

/**
 * Creates a new HTTP connection for the given host configuration.
 * 
 * @param hostConfiguration the host/proxy/protocol to use
 */
public HttpConnection(HostConfiguration hostConfiguration) {
  this(hostConfiguration.getProxyHost(),
     hostConfiguration.getProxyPort(),
     hostConfiguration.getHost(),
     hostConfiguration.getPort(),
     hostConfiguration.getProtocol());
  this.localAddress = hostConfiguration.getLocalAddress();
}

代码示例来源:origin: org.apache.commons/com.springsource.org.apache.commons.httpclient

/**
 * Creates a new HTTP connection for the given host configuration.
 * 
 * @param hostConfiguration the host/proxy/protocol to use
 */
public HttpConnection(HostConfiguration hostConfiguration) {
  this(hostConfiguration.getProxyHost(),
     hostConfiguration.getProxyPort(),
     hostConfiguration.getHost(),
     hostConfiguration.getPort(),
     hostConfiguration.getProtocol());
  this.localAddress = hostConfiguration.getLocalAddress();
}

代码示例来源:origin: org.wso2.commons-httpclient/commons-httpclient

/**
 * Creates a new HTTP connection for the given host configuration.
 * 
 * @param hostConfiguration the host/proxy/protocol to use
 */
public HttpConnection(HostConfiguration hostConfiguration) {
  this(hostConfiguration.getProxyHost(),
     hostConfiguration.getProxyPort(),
     hostConfiguration.getHost(),
     hostConfiguration.getPort(),
     hostConfiguration.getProtocol());
  this.localAddress = hostConfiguration.getLocalAddress();
}

代码示例来源:origin: org.apache.commons/httpclient

/**
 * Creates a new HTTP connection for the given host configuration.
 * 
 * @param hostConfiguration the host/proxy/protocol to use
 */
public HttpConnection(HostConfiguration hostConfiguration) {
  this(hostConfiguration.getProxyHost(),
     hostConfiguration.getProxyPort(),
     hostConfiguration.getHost(),
     hostConfiguration.getPort(),
     hostConfiguration.getProtocol());
  this.localAddress = hostConfiguration.getLocalAddress();
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-httpclient

httpConnection.setPort(hostConfiguration.getPort());
httpConnection.setProtocol(hostConfiguration.getProtocol());
httpConnection.setLocalAddress(hostConfiguration.getLocalAddress());

代码示例来源:origin: org.apache.commons/com.springsource.org.apache.commons.httpclient

httpConnection.setPort(hostConfiguration.getPort());
httpConnection.setProtocol(hostConfiguration.getProtocol());
httpConnection.setLocalAddress(hostConfiguration.getLocalAddress());

代码示例来源:origin: org.apache.commons/httpclient

httpConnection.setPort(hostConfiguration.getPort());
httpConnection.setProtocol(hostConfiguration.getProtocol());
httpConnection.setLocalAddress(hostConfiguration.getLocalAddress());

代码示例来源:origin: org.wso2.commons-httpclient/commons-httpclient

httpConnection.setPort(hostConfiguration.getPort());
httpConnection.setProtocol(hostConfiguration.getProtocol());
httpConnection.setLocalAddress(hostConfiguration.getLocalAddress());

代码示例来源:origin: org.netpreserve.commons/commons-web

httpConnection.setPort(hostConfiguration.getPort());
httpConnection.setProtocol(hostConfiguration.getProtocol());
httpConnection.setLocalAddress(hostConfiguration.getLocalAddress());

代码示例来源:origin: org.netpreserve.commons/webarchive-commons

httpConnection.setPort(hostConfiguration.getPort());
httpConnection.setProtocol(hostConfiguration.getProtocol());
httpConnection.setLocalAddress(hostConfiguration.getLocalAddress());

代码示例来源:origin: iipc/webarchive-commons

httpConnection.setPort(hostConfiguration.getPort());
httpConnection.setProtocol(hostConfiguration.getProtocol());
httpConnection.setLocalAddress(hostConfiguration.getLocalAddress());

相关文章