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 / DownloaderAuthenticationConfig.java @ 47821

History | View | Annotate | Download (470 Bytes)

1
package org.gvsig.downloader;
2

    
3
/**
4
 *
5
 * @author jjdelcerro
6
 */
7
public interface DownloaderAuthenticationConfig extends org.gvsig.tools.lang.Cloneable {
8

    
9
    public String getProviderName();
10

    
11
    public DownloaderAuthenticationFactory getFactory();
12
    
13
    public String getBaseUrl();
14

    
15
    public String getKey();
16
    
17
    public DownloaderAuthenticationRequester create();
18

    
19
    public boolean isConfigurable();
20
    
21
    public boolean requestAuthenticationConfig();
22
}