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

History | View | Annotate | Download (704 Bytes)

1
package org.gvsig.downloader;
2

    
3
import org.gvsig.json.SupportJson;
4

    
5
/**
6
 *
7
 * @author jjdelcerro
8
 */
9
public interface DownloaderAuthenticationConfig 
10
        extends 
11
            org.gvsig.tools.lang.Cloneable,
12
            SupportJson
13
    {
14

    
15
    public static final String CONFIG_PROVIDERNAME_NAME = "factory";
16
    public static final String CONFIG_SERVICEURL_NAME = "serviceUrl";
17
    
18
    public String getProviderName();
19

    
20
    public DownloaderAuthenticationFactory getFactory();
21
    
22
    public String getServiceUrl();
23

    
24
    public String getKey();
25
    
26
    public DownloaderAuthenticationRequester create();
27

    
28
    public boolean isConfigurable();
29
    
30
    public boolean requestAuthenticationConfig();
31
}