OAuth clean-up and refactoring
[pub/Android/ownCloud.git] / src / com / owncloud / android / authenticator / oauth2 / OAuth2Context.java
diff --git a/src/com/owncloud/android/authenticator/oauth2/OAuth2Context.java b/src/com/owncloud/android/authenticator/oauth2/OAuth2Context.java
deleted file mode 100644 (file)
index 03189fe..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-package com.owncloud.android.authenticator.oauth2;
-
-/** 
- *  Class used to store data from the app registration in oAuth2 server.
- *  THIS VALUES ARE ORIENTATIVE.
- *  MUST BE CHANGED WITH THE CORRECT ONES.
- *  
- * @author SolidGear S.L.
- *
- */
-
-public class OAuth2Context {
-    
-    public static final String OAUTH2_DEVICE_CLIENT_ID = "0000000000000.apps.googleusercontent.com";  
-    public static final String OAUTH2_DEVICE_CLIENT_SECRET = "XXXXXXXXXXXXXXXXXXXXXXXXX";
-    public static final String OAUTH_DEVICE_GETTOKEN_GRANT_TYPE = "http://oauth.net/grant_type/device/1.0";
-    public static final String OAUTH2_DEVICE_GETCODE_URL = "/o/oauth2/device/code";  
-    public static final String OAUTH2_DEVICE_GETTOKEN_URL = "/o/oauth2/token";
-    public static final String OAUTH2_DEVICE_GETCODE_SCOPES = "https://www.googleapis.com/auth/userinfo.email";
-}