aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/connector/oc/OCPLAuthParams.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/connector/oc/OCPLAuthParams.java')
-rw-r--r--main/src/cgeo/geocaching/connector/oc/OCPLAuthParams.java51
1 files changed, 0 insertions, 51 deletions
diff --git a/main/src/cgeo/geocaching/connector/oc/OCPLAuthParams.java b/main/src/cgeo/geocaching/connector/oc/OCPLAuthParams.java
deleted file mode 100644
index dfe03e5..0000000
--- a/main/src/cgeo/geocaching/connector/oc/OCPLAuthParams.java
+++ /dev/null
@@ -1,51 +0,0 @@
-package cgeo.geocaching.connector.oc;
-
-import cgeo.geocaching.R;
-
-public class OCPLAuthParams implements IOCAuthParams {
-
- @Override
- public String getSite() {
- return "www.opencaching.pl";
- }
-
- @Override
- public int getCKResId() {
- return R.string.oc_pl_okapi_consumer_key;
- }
-
- @Override
- public int getCSResId() {
- return R.string.oc_pl_okapi_consumer_secret;
- }
-
- @Override
- public int getAuthTitleResId() {
- return R.string.auth_ocpl;
- }
-
- @Override
- public int getTokenPublicPrefKey() {
- return R.string.pref_ocpl_tokenpublic;
- }
-
- @Override
- public int getTokenSecretPrefKey() {
- return R.string.pref_ocpl_tokensecret;
- }
-
- @Override
- public int getTempTokenPublicPrefKey() {
- return R.string.pref_temp_ocpl_token_public;
- }
-
- @Override
- public int getTempTokenSecretPrefKey() {
- return R.string.pref_temp_ocpl_token_secret;
- }
-
- @Override
- public String getCallbackUri() {
- return "callback://www.cgeo.org/opencaching.pl/";
- }
-}