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

History | View | Annotate | Download (318 Bytes)

1
package org.gvsig.downloader;
2

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

    
9
    public DownloaderAuthenticationConfig getConfig();
10
    
11
    public String getProviderName();
12

    
13
    public boolean requestAuthorization();
14

    
15
    public DownloaderCredentials getCredentials();
16
    
17
}