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 47821 jjdelcerro
package org.gvsig.downloader;
2
3 47824 fdiaz
import java.util.concurrent.Executor;
4
5 47821 jjdelcerro
/**
6
 *
7
 * @author jjdelcerro
8
 */
9
public interface DownloaderAuthenticationRequester {
10
11
    public DownloaderAuthenticationConfig getConfig();
12
13
    public String getProviderName();
14
15 47824 fdiaz
    public boolean requestAuthorization(Executor executorUI);
16 47821 jjdelcerro
17
    public DownloaderCredentials getCredentials();
18
19
}