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:
Oleg Kalnichevski 2011-10-10 20:03:53 +00:00
parent 287d839410
commit d1450f9071
4 changed files with 7 additions and 0 deletions

View File

@ -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 {

View File

@ -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) {

View File

@ -38,6 +38,8 @@ import org.apache.http.conn.DnsResolver;
/**
* In-memory DNS resolver implementation.
*
* @since 4.2
*/
public class InMemoryDnsResolver implements DnsResolver {

View File

@ -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 {