Back to project page android-ocw.
The source code is released under:
GNU General Public License
If you think the Android project android-ocw 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 app.ocw.api; //from ww w. j av a 2 s. c o m /** * Request and response keys for the Course Search API * * @author Nick Ferraro * */ public interface CourseSearchAPI { public static final String KEY_ID = "id"; public static final String KEY_TITLE = "title"; public static final String KEY_DESCRIPTION = "description"; public static final String KEY_LANGUAGE = "language"; public static final String KEY_IS_MEMBER = "is_member"; public static final String KEY_SOURCE = "source"; public static final String KEY_SCORE = "score"; public static final String KEY_LINK = "link"; }