Add conversationId field to Message

So that exchange can pass along conversationId when
syncing. It's not persisted in the database.

Change-Id: I53d68b27b292b0db0fd808e0deeb28751361f1f4
This commit is contained in:
Jorge Lugo 2011-08-10 17:52:34 -07:00
parent da1d233916
commit c01a783cd6
1 changed files with 7 additions and 0 deletions

View File

@ -685,6 +685,13 @@ public abstract class EmailContent {
public String mProtocolSearchInfo;
/**
* Base64-encoded representation of the byte array provided by servers for identifying
* messages belonging to the same conversation thread. Currently unsupported and not
* persisted in the database.
*/
public String mServerConversationId;
// The following transient members may be used while building and manipulating messages,
// but they are NOT persisted directly by EmailProvider. See Body for related fields.
transient public String mText;