Back to project page sms-smap-gateway.
The source code is released under:
GNU General Public License
If you think the Android project sms-smap-gateway 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 com.android.smap.api; /*from w w w. ja v a 2 s. c o m*/ /** * Interface that contains all constants associated with the API * * @author matt witherow */ public interface ApiConstants { // URLs /** Production Endpoint URL */ public static final String PRODUCTION_URL = "stub-loggr.herokuapp.com"; public static final String DEV_URL = ""; // REQUEST SCHEME public static final String SCHEME_HTTP = "http"; public static final String SCHEME_HTTPS = "https"; // HEADERS /** Header value for Content Type */ public static final String HEADER_CONTENT_TYPE_VALUE = "application/json"; public static final String HEADER_AUTH_TOKEN = "smap-token"; // API CALLs public static final String API_TOKEN = "token"; // DEFAULTS public static final int DEFAULT_TIMEOUT = 20000; public static final int DEFAULT_PAGE_SIZE = 10; }