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

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

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

HttpHost.clone介绍

暂无

代码示例

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

/**
 * @throws CloneNotSupportedException 
 * @see java.lang.Object#clone()
 */
public Object clone() throws CloneNotSupportedException {
  ProxyHost copy = (ProxyHost) super.clone();
  return copy;
}

代码示例来源: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: org.apache.commons/com.springsource.org.apache.commons.httpclient

/**
 * @throws CloneNotSupportedException 
 * @see java.lang.Object#clone()
 */
public Object clone() throws CloneNotSupportedException {
  ProxyHost copy = (ProxyHost) super.clone();
  return copy;
}

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

/**
 * @throws CloneNotSupportedException 
 * @see java.lang.Object#clone()
 */
public Object clone() throws CloneNotSupportedException {
  ProxyHost copy = (ProxyHost) super.clone();
  return copy;
}

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

/**
 * @throws CloneNotSupportedException 
 * @see java.lang.Object#clone()
 */
public Object clone() throws CloneNotSupportedException {
  ProxyHost copy = (ProxyHost) super.clone();
  return copy;
}

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

/**
 * @throws CloneNotSupportedException 
 * @see java.lang.Object#clone()
 */
public Object clone() throws CloneNotSupportedException {
  ProxyHost copy = (ProxyHost) super.clone();
  return copy;
}

代码示例来源: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.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");
    }
  }        
}

相关文章