Back to project page Android-SDK.
The source code is released under:
MIT License
If you think the Android project Android-SDK listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.getcloudengine; /*from ww w . j a va 2 s.c o m*/ public class CloudEndPoints { public static final String socketServer = "https://getcloudengine.net/default"; public static final String CLASSES = "https://getcloudengine.net/api/v2/classes/"; public static final String USERS = "https://getcloudengine.net/api/v2/users/"; public static final String FILES = "https://getcloudengine.net/api/v2/files/"; public static final String LOGIN = "https://getcloudengine.net/api/v2/users/login/"; public static final String LOGOUT = "https://getcloudengine.net/api/v2/users/logout/"; public static final String CURRENT_USER = "https://getcloudengine.net/api/v2/users/me/"; public static final String PASSWORD_RESET = "https://getcloudengine.net/api/v2/users/password_reset/"; }