blob: 2d5cd0bb2e16a2a37dbf51867f43f686c6ca2013 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package cgeo.geocaching.connector.capability;
/**
* Marker interface for connectors which have user name and password as credentials.
*
*/
public interface ICredentials {
/**
* Get preference key of the user name.
*
*/
public int getUsernamePreferenceKey();
/**
* Get preference key of the password.
*
*/
public int getPasswordPreferenceKey();
}
|