HTTPCLIENT-1123: added @since 4.2 tag
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1181192 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
287d839410
commit
d1450f9071
|
@ -32,6 +32,8 @@ import java.net.UnknownHostException;
|
|||
/**
|
||||
* Users may implement this interface to override the normal DNS lookup offered
|
||||
* by the OS.
|
||||
*
|
||||
* @since 4.2
|
||||
*/
|
||||
public interface DnsResolver {
|
||||
|
||||
|
|
|
@ -99,6 +99,8 @@ public class DefaultClientConnectionOperator implements ClientConnectionOperator
|
|||
* Creates a new client connection operator for the given scheme registry.
|
||||
*
|
||||
* @param schemes the scheme registry
|
||||
*
|
||||
* @since 4.2
|
||||
*/
|
||||
public DefaultClientConnectionOperator(final SchemeRegistry schemes) {
|
||||
if (schemes == null) {
|
||||
|
|
|
@ -38,6 +38,8 @@ import org.apache.http.conn.DnsResolver;
|
|||
|
||||
/**
|
||||
* In-memory DNS resolver implementation.
|
||||
*
|
||||
* @since 4.2
|
||||
*/
|
||||
public class InMemoryDnsResolver implements DnsResolver {
|
||||
|
||||
|
|
|
@ -34,6 +34,7 @@ import org.apache.http.conn.DnsResolver;
|
|||
/**
|
||||
* DNS resolver that uses the default OS implementation for resolving host names.
|
||||
*
|
||||
* @since 4.2
|
||||
*/
|
||||
public class SystemDefaultDnsResolver implements DnsResolver {
|
||||
|
||||
|
|
Loading…
Reference in New Issue