package org.thoughtcrime.securesms.gcm; import java.util.LinkedList; import java.util.List; public class IncomingGcmMessage { private String source; private List destinations; private String messageText; private List attachments; private long timestamp; public IncomingGcmMessage(String source, List destinations, String messageText, List attachments, long timestamp) { this.source = source; this.destinations = destinations; this.messageText = messageText; this.attachments = attachments; this.timestamp = timestamp; } public long getTimestampMillis() { return timestamp; } public String getSource() { return source; } public List getAttachments() { return attachments; } public String getMessageText() { return messageText; } public List getDestinations() { return destinations; } }