Back to project page filmster.
The source code is released under:
Apache License
If you think the Android project filmster 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.doodeec.filmster.Model; /* ww w . j a v a 2 s. c o m*/ /** * Created by Dusan Doodeec Bartos on 20.10.2014. * * keys for Movie JSON definition */ public class MovieDefinitionKeys { public static final String TOTAL_KEY = "total"; public static final String MOVIES_KEY = "movies"; protected static final String KEY_ID = "id"; protected static final String KEY_TITLE = "title"; protected static final String KEY_YEAR = "year"; protected static final String KEY_RATING = "ratings"; protected static final String KEY_RATING_AUDIENCE = "audience_score"; protected static final String KEY_RATING_CRITICS = "critics_score"; protected static final String KEY_SYNOPSIS = "synopsis"; protected static final String KEY_POSTERS = "posters"; protected static final String KEY_POSTER_THUMBNAIL = "thumbnail"; protected static final String KEY_POSTER_DETAIL = "detailed"; protected static final String KEY_LINKS = "links"; protected static final String KEY_LINK_IMDB = "imdb"; protected static final String KEY_CAST = "abridged_cast"; }