Back to project page android-ribbit.
The source code is released under:
MIT License
If you think the Android project android-ribbit 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.teamtreehouse.ribbit; /*from w w w . j a va 2s.c o m*/ public final class ParseConstants { // Class name public static final String CLASS_MESSAGES = "Messages"; // Field names public static final String KEY_USERNAME = "username"; public static final String KEY_FRIENDS_RELATION = "friendsRelation"; public static final String KEY_RECIPIENT_IDS = "recipientIds"; public static final String KEY_SENDER_ID = "senderId"; public static final String KEY_SENDER_NAME = "senderName"; public static final String KEY_FILE = "file"; public static final String KEY_FILE_TYPE = "fileType"; public static final String KEY_CREATED_AT = "createdAt"; public static final String TYPE_IMAGE = "image"; public static final String TYPE_VIDEO = "video"; }