Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.downloader / org.gvsig.downloader.lib / org.gvsig.downloader.lib.impl / src / main / java / org / gvsig / downloader / lib / impl / types / httpbasic / DownloaderHTTPBasicAuthenticationConfig.java @ 47821

History | View | Annotate | Download (1.04 KB)

1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.downloader.lib.impl.types.httpbasic;
7

    
8
import org.gvsig.downloader.DownloaderAuthenticationConfig;
9
import org.gvsig.downloader.DownloaderAuthenticationRequester;
10
import org.gvsig.downloader.spi.AbstractDownloaderAuthenticationConfig;
11

    
12

    
13
/**
14
 *
15
 * @author jjdelcerro
16
 */
17
public class DownloaderHTTPBasicAuthenticationConfig
18
        extends AbstractDownloaderAuthenticationConfig
19
        implements DownloaderAuthenticationConfig 
20
    {
21
    
22
    public DownloaderHTTPBasicAuthenticationConfig(DownloaderHTTPBasicAuthenticationFactory factory, String baseUrl) {
23
        super(factory, baseUrl);
24
    }
25
    
26
    @Override
27
    public DownloaderAuthenticationRequester create() {
28
        return new DownloaderHTTPBasicAuthenticationRequester(this);
29
    }
30

    
31
    @Override
32
    public Object clone() throws CloneNotSupportedException {
33
        return super.clone();
34
    }
35

    
36
}