Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.downloader / org.gvsig.downloader.lib / org.gvsig.downloader.lib.api / src / main / java / org / gvsig / downloader / DownloaderAuthenticationFactory.java @ 47847

History | View | Annotate | Download (264 Bytes)

1
package org.gvsig.downloader;
2

    
3
/**
4
 *
5
 * @author jjdelcerro
6
 */
7
public interface DownloaderAuthenticationFactory {
8

    
9
    public String getProviderName();
10

    
11
    public DownloaderAuthenticationConfig create(Object... args);
12
    
13
    public String getDescription();
14

    
15
}