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

History | View | Annotate | Download (376 Bytes)

1
package org.gvsig.downloader;
2

    
3
import java.util.concurrent.Executor;
4

    
5
/**
6
 *
7
 * @author jjdelcerro
8
 */
9
public interface DownloaderAuthenticationRequester {
10

    
11
    public DownloaderAuthenticationConfig getConfig();
12
    
13
    public String getProviderName();
14

    
15
    public boolean requestAuthorization(Executor executorUI);
16

    
17
    public DownloaderCredentials getCredentials();
18
    
19
}