Uses of Class
messaging.Message

Packages that use Message
group   
messaging   
network   
 

Uses of Message in group
 

Methods in group with parameters of type Message
abstract  void GroupService.processMessage(Message message)
          The MessagingService forwards a read message to the GroupService in order to apply group changes depending on the message content and type.
 

Uses of Message in messaging
 

Methods in messaging that return Message
abstract  Message MessageFactory.createMessage(MessageType type, User destination, String content)
           
 

Methods in messaging that return types with arguments of type Message
abstract  List<Message> Mailbox.getAllMessages()
          Returns a list of all messages of the logged in user.
abstract  List<Message> MessagingService.getAllMessages()
          A wrapper over the method offered by Mailbox, it provides to other components a list of all the messages in the user's mailbox.
abstract  List<Message> Mailbox.getMessages(MessageQueryCriteria criteria)
          Returns a subset of messages of the logged in user based on the given criteria.
abstract  List<Message> MessagingService.getMessages(MessageQueryCriteria criteria)
          A wrapper over the method offered by Mailbox, it provides a subset of messages of the logged in user based on the given criteria.
 

Methods in messaging with parameters of type Message
protected abstract  void MessagingService.informMessage(Message message)
          Informs the GroupService about a message it has to process.
abstract  void MessagingService.receiveMessage(Message message)
          The MessagingService receives a new Message from the remote centralized Messaging service.
abstract  void Mailbox.removeMessage(Message message)
          Removes (deletes) a message from the mailbox.
abstract  void MessagingService.sendMessage(Message message)
          Sends a message to another user and also stores it in the Mailbox.
abstract  void Mailbox.updateMessage(Message message)
          Updates the information stored for the message (it might have been change locally or on another device).
 

Method parameters in messaging with type arguments of type Message
abstract  void Mailbox.addMessages(List<Message> messages)
          Adds newly received messages to the mailbox.
 

Uses of Message in network
 

Methods in network with parameters of type Message
abstract  void NetworkService.contactRemoteService(Message message)
          Send the given request to the remote Naming Service.
protected abstract  void NetworkListener.receiveMessage(Message message)
          Receives a message from another user via the remote MessagingService.