[HTTPCLIENT-1952] Allow default User Agent to be disabled
This commit is contained in:
parent
1a8ad57a20
commit
f04d81e302
|
@ -205,6 +205,7 @@ public class HttpClientBuilder {
|
||||||
private boolean cookieManagementDisabled;
|
private boolean cookieManagementDisabled;
|
||||||
private boolean authCachingDisabled;
|
private boolean authCachingDisabled;
|
||||||
private boolean connectionStateDisabled;
|
private boolean connectionStateDisabled;
|
||||||
|
private boolean defaultUserAgentDisabled;
|
||||||
|
|
||||||
private int maxConnTotal = 0;
|
private int maxConnTotal = 0;
|
||||||
private int maxConnPerRoute = 0;
|
private int maxConnPerRoute = 0;
|
||||||
|
@ -864,6 +865,16 @@ public class HttpClientBuilder {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Disables the default user agent set by this builder if none has been provided by the user.
|
||||||
|
*
|
||||||
|
* @since 4.5.7
|
||||||
|
*/
|
||||||
|
public final HttpClientBuilder disableDefaultUserAgent() {
|
||||||
|
this.defaultUserAgentDisabled = true;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Produces an instance of {@link ClientExecChain} to be used as a main exec.
|
* Produces an instance of {@link ClientExecChain} to be used as a main exec.
|
||||||
* <p>
|
* <p>
|
||||||
|
@ -1042,7 +1053,7 @@ public class HttpClientBuilder {
|
||||||
if (systemProperties) {
|
if (systemProperties) {
|
||||||
userAgentCopy = System.getProperty("http.agent");
|
userAgentCopy = System.getProperty("http.agent");
|
||||||
}
|
}
|
||||||
if (userAgentCopy == null) {
|
if (userAgentCopy == null && !defaultUserAgentDisabled) {
|
||||||
userAgentCopy = VersionInfo.getUserAgent("Apache-HttpClient",
|
userAgentCopy = VersionInfo.getUserAgent("Apache-HttpClient",
|
||||||
"org.apache.http.client", getClass());
|
"org.apache.http.client", getClass());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue