Home | History | Annotate | Download | only in data

Lines Matching refs:messageId

736      * Updates the messageId for this message.
737 * Can be used to reset the messageId prior to persisting (which will assign a new messageId)
738 * or can be called on a message that does not yet have a valid messageId to set it.
740 public void updateMessageId(final String messageId) {
741 Assert.isTrue(TextUtils.isEmpty(messageId) || TextUtils.isEmpty(mMessageId));
742 mMessageId = messageId;
910 public static String toString(String messageId, List<MessagePartData> parts) {
912 if (messageId != null) {
913 sb.append(messageId);