IVY-1575 Fix javadoc on URLHandlerDispatcher

This commit is contained in:
Jaikiran Pai 2018-02-07 08:27:39 +05:30
parent 9003b5b5aa
commit 82ad5b0416
1 changed files with 3 additions and 1 deletions

View File

@ -28,7 +28,9 @@ import java.util.HashMap;
import java.util.Map;
/**
* This class is used to dispatch downloading requests
* An implementation of {@link URLHandler} which uses an underlying {@link URLHandler} per protocol
* and a fallback default {@link URLHandler} for dealing with downloads, uploads and
* general reachability checks
*/
public class URLHandlerDispatcher implements URLHandler {
private final Map<String, URLHandler> handlers = new HashMap<>();