Package | Description |
---|---|
com.oss.teamshare.messaging |
Modifier and Type | Class and Description |
---|---|
class |
InvitationMessage |
class |
OwnershipTransferMessage |
Modifier and Type | Method and Description |
---|---|
static Message |
MessageFactory.createInvitationMessage() |
static Message |
MessageFactory.createOwnerTransferMessage() |
static Message |
MessageFactory.createReply(Message replyto) |
Modifier and Type | Method and Description |
---|---|
Collection<Message> |
Mailbox.getMessages(MessageQuery query)
Returns a list of messages of the logged-in user based on the given query
criteria.
|
Modifier and Type | Method and Description |
---|---|
void |
Mailbox.addMessage(Message msg)
Adds a new message to the mailbox.
|
static Message |
MessageFactory.createReply(Message replyto) |
void |
Mailbox.removeMessage(Message msg)
Removes (deletes) a message from the mailbox.
|
abstract void |
MessagingService.send(Message msg)
Sends a message to another user and also stores it in the Mailbox.
|
void |
Mailbox.updateMessageStatus(Message msg,
MessageStatus newStatus)
Updates the message's status (read/unread), see also
MessageStatus |
Modifier and Type | Method and Description |
---|---|
void |
Mailbox.addMessages(Collection<Message> messages)
Adds newly received or sent messages to the mailbox.
|