aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/connector/oc/OCDEAuthParams.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/connector/oc/OCDEAuthParams.java')
-rw-r--r--main/src/cgeo/geocaching/connector/oc/OCDEAuthParams.java51
1 files changed, 0 insertions, 51 deletions
diff --git a/main/src/cgeo/geocaching/connector/oc/OCDEAuthParams.java b/main/src/cgeo/geocaching/connector/oc/OCDEAuthParams.java
deleted file mode 100644
index 17c1cb8..0000000
--- a/main/src/cgeo/geocaching/connector/oc/OCDEAuthParams.java
+++ /dev/null
@@ -1,51 +0,0 @@
-package cgeo.geocaching.connector.oc;
-
-import cgeo.geocaching.R;
-
-public class OCDEAuthParams implements IOCAuthParams {
-
- @Override
- public String getSite() {
- return "www.opencaching.de";
- }
-
- @Override
- public int getCKResId() {
- return R.string.oc_de_okapi_consumer_key;
- }
-
- @Override
- public int getCSResId() {
- return R.string.oc_de_okapi_consumer_secret;
- }
-
- @Override
- public int getAuthTitleResId() {
- return R.string.auth_ocde;
- }
-
- @Override
- public int getTokenPublicPrefKey() {
- return R.string.pref_ocde_tokenpublic;
- }
-
- @Override
- public int getTokenSecretPrefKey() {
- return R.string.pref_ocde_tokensecret;
- }
-
- @Override
- public int getTempTokenPublicPrefKey() {
- return R.string.pref_temp_ocde_token_public;
- }
-
- @Override
- public int getTempTokenSecretPrefKey() {
- return R.string.pref_temp_ocde_token_secret;
- }
-
- @Override
- public String getCallbackUri() {
- return "callback://www.cgeo.org/opencaching.de/";
- }
-}