Back to project page Photochat.
The source code is released under:
This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...
If you think the Android project Photochat 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.navneet.photochat; //w w w . ja v a2 s .com public final class ParseConstants { // Class names public static final String CLASS_MESSAGES = "Messages"; // Field names public static final String KEY_USER_ID = "userId"; public static final String KEY_USERNAME = "username"; public static final String KEY_FRIEND_RELATION = "friendsrelation"; public static final String KEY_RECIPIENTS_IDS = "recipientsIds"; 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"; }