aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/connector/oc/IOCAuthParams.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/connector/oc/IOCAuthParams.java')
-rw-r--r--main/src/cgeo/geocaching/connector/oc/IOCAuthParams.java29
1 files changed, 18 insertions, 11 deletions
diff --git a/main/src/cgeo/geocaching/connector/oc/IOCAuthParams.java b/main/src/cgeo/geocaching/connector/oc/IOCAuthParams.java
index 5a140a1..dacb626 100644
--- a/main/src/cgeo/geocaching/connector/oc/IOCAuthParams.java
+++ b/main/src/cgeo/geocaching/connector/oc/IOCAuthParams.java
@@ -3,58 +3,65 @@ package cgeo.geocaching.connector.oc;
public interface IOCAuthParams {
/**
- * The site name: 'www.openaching...'
- *
+ * The site name: 'www.opencaching...'
+ *
* @return
*/
String getSite();
/**
* ResId of the Consumer key
- *
+ *
* @return
*/
int getCKResId();
/**
* ResId of the Consumer secret
- *
+ *
* @return
*/
int getCSResId();
/**
- * ResId ot the Authorization title
- *
+ * ResId of the Authorization title
+ *
* @return
*/
- int getAuthTitelResId();
+ int getAuthTitleResId();
/**
* Preference key of the public token
- *
+ *
* @return
*/
int getTokenPublicPrefKey();
/**
* Preference key of the secret token
- *
+ *
* @return
*/
int getTokenSecretPrefKey();
/**
* Preference key of the temporary public token (OAuth)
- *
+ *
* @return
*/
int getTempTokenPublicPrefKey();
/**
* Preference key of the temporary secret token (OAuth)
- *
+ *
* @return
*/
int getTempTokenSecretPrefKey();
+
+ /**
+ * The URI to use as a callback (OAuth)
+ *
+ * @return
+ */
+ String getCallbackUri();
}