Jitsi: the OpenSource Java VoIP and Instant Messaging client.

Uses of Interface
net.java.sip.communicator.service.protocol.Message

Packages that use Message
net.java.sip.communicator.impl.protocol.dict   
net.java.sip.communicator.impl.protocol.gibberish   
net.java.sip.communicator.impl.protocol.icq   
net.java.sip.communicator.impl.protocol.irc   
net.java.sip.communicator.impl.protocol.jabber   
net.java.sip.communicator.impl.protocol.mock   
net.java.sip.communicator.impl.protocol.msn   
net.java.sip.communicator.impl.protocol.rss   
net.java.sip.communicator.impl.protocol.sip   
net.java.sip.communicator.impl.protocol.ssh   
net.java.sip.communicator.impl.protocol.yahoo   
net.java.sip.communicator.impl.protocol.zeroconf   
net.java.sip.communicator.service.protocol   
net.java.sip.communicator.service.protocol.event   
 

Uses of Message in net.java.sip.communicator.impl.protocol.dict
 

Classes in net.java.sip.communicator.impl.protocol.dict that implement Message
 class MessageDictImpl
          Very simple message implementation for the Dict protocol.
 

Methods in net.java.sip.communicator.impl.protocol.dict that return Message
 Message OperationSetBasicInstantMessagingDictImpl.createMessage(String content)
           
 Message OperationSetBasicInstantMessagingDictImpl.createMessage(String content, String contentType, String encoding, String subject)
           
 

Methods in net.java.sip.communicator.impl.protocol.dict with parameters of type Message
 void OperationSetBasicInstantMessagingDictImpl.sendInstantMessage(Contact to, Message message)
          Sends the message to the destination indicated by the to contact.
 

Uses of Message in net.java.sip.communicator.impl.protocol.gibberish
 

Classes in net.java.sip.communicator.impl.protocol.gibberish that implement Message
 class MessageGibberishImpl
          Very simple message implementation for the Gibberish protocol.
 

Methods in net.java.sip.communicator.impl.protocol.gibberish that return Message
 Message OperationSetBasicInstantMessagingGibberishImpl.createMessage(String content, String contentType, String encoding, String subject)
           
 

Methods in net.java.sip.communicator.impl.protocol.gibberish with parameters of type Message
 void OperationSetBasicInstantMessagingGibberishImpl.sendInstantMessage(Contact to, Message message)
          Sends the message to the destination indicated by the to contact.
 

Uses of Message in net.java.sip.communicator.impl.protocol.icq
 

Classes in net.java.sip.communicator.impl.protocol.icq that implement Message
 class MessageIcqImpl
          A simple implementation of the Message interface.
 

Methods in net.java.sip.communicator.impl.protocol.icq that return Message
 Message AdHocChatRoomIcqImpl.createMessage(byte[] content, String contentType, String contentEncoding, String subject)
          Create a Message instance for sending arbitrary MIME-encoding content.
 Message AdHocChatRoomIcqImpl.createMessage(String messageText)
          Create a Message instance for sending a simple text messages with default (text/plain) content type and encoding.
 Message OperationSetBasicInstantMessagingIcqImpl.createMessage(String content, String contentType, String encoding, String subject)
           
 

Methods in net.java.sip.communicator.impl.protocol.icq with parameters of type Message
 void OperationSetBasicInstantMessagingIcqImpl.sendInstantMessage(Contact to, Message message)
          Sends the message to the destination indicated by the to contact.
 void AdHocChatRoomIcqImpl.sendMessage(Message message)
          Sends the message to the destination indicated by the to contact.
 

Uses of Message in net.java.sip.communicator.impl.protocol.irc
 

Classes in net.java.sip.communicator.impl.protocol.irc that implement Message
 class MessageIrcImpl
          Very simple message implementation for the IRC protocol.
 

Methods in net.java.sip.communicator.impl.protocol.irc that return Message
 Message ChatRoomIrcImpl.createMessage(byte[] content, String contentType, String contentEncoding, String subject)
          Create a Message instance for sending arbitrary MIME-encoding content.
 Message ChatRoomIrcImpl.createMessage(String messageText)
          Create a Message instance for sending a simple text messages with default (text/plain) content type and encoding.
 

Methods in net.java.sip.communicator.impl.protocol.irc with parameters of type Message
 void ChatRoomIrcImpl.fireMessageReceivedEvent(Message message, ChatRoomMember fromMember, long date, int eventType)
          Notifies all interested listeners that a ChatRoomMessageReceivedEvent has been fired.
 void ChatRoomIrcImpl.sendMessage(Message message)
          Sends the message to the destination indicated by the to contact.
 

Uses of Message in net.java.sip.communicator.impl.protocol.jabber
 

Classes in net.java.sip.communicator.impl.protocol.jabber that implement Message
 class MessageJabberImpl
          A simple implementation of the Message interface.
 

Methods in net.java.sip.communicator.impl.protocol.jabber that return Message
 Message ChatRoomJabberImpl.createMessage(byte[] content, String contentType, String contentEncoding, String subject)
          Create a Message instance for sending arbitrary MIME-encoding content.
 Message ChatRoomJabberImpl.createMessage(String messageText)
          Create a Message instance for sending a simple text messages with default (text/plain) content type and encoding.
 Message OperationSetBasicInstantMessagingJabberImpl.createMessage(String content, String contentType)
          Create a Message instance for sending arbitrary MIME-encoding content.
 Message OperationSetBasicInstantMessagingJabberImpl.createMessage(String content, String contentType, String encoding, String subject)
          Create a Message instance for sending arbitrary MIME-encoding content.
 

Methods in net.java.sip.communicator.impl.protocol.jabber with parameters of type Message
 void OperationSetBasicInstantMessagingJabberImpl.sendInstantMessage(Contact to, Message message)
          Sends the message to the destination indicated by the to contact.
 void ChatRoomJabberImpl.sendMessage(Message message)
          Sends the message to the destination indicated by the to contact.
 

Uses of Message in net.java.sip.communicator.impl.protocol.mock
 

Classes in net.java.sip.communicator.impl.protocol.mock that implement Message
 class MockMessage
          Message Impl.
 

Methods in net.java.sip.communicator.impl.protocol.mock that return Message
 Message MockChatRoom.createMessage(byte[] content, String contentType, String contentEncoding, String subject)
          Create a Message instance for sending arbitrary MIME-encoding content.
 Message MockChatRoom.createMessage(String messageText)
          Create a Message instance for sending a simple text messages with default (text/plain) content type and encoding.
 Message MockBasicInstantMessaging.createMessage(String content, String contentType, String encoding, String subject)
           
 

Methods in net.java.sip.communicator.impl.protocol.mock with parameters of type Message
 void MockChatRoom.deliverMessage(Message msg, String from)
          Methods for manipulating mock operation set as deliver(receive) messageop
 void MockBasicInstantMessaging.deliverMessage(String to, Message msg)
          Methods for manipulating mock operation set as deliver(receive) messageop
 void MockBasicInstantMessaging.sendInstantMessage(Contact to, Message message)
          Sends the message to the destination indicated by the to contact.
 void MockChatRoom.sendMessage(Message message)
          Sends the message to the destination indicated by the to contact.
 

Uses of Message in net.java.sip.communicator.impl.protocol.msn
 

Classes in net.java.sip.communicator.impl.protocol.msn that implement Message
 class MessageMsnImpl
          A simple implementation of the Message interface.
 

Methods in net.java.sip.communicator.impl.protocol.msn that return Message
 Message OperationSetAdHocMultiUserChatMsnImpl.createMessage(String messageText)
          Creates a message by a given message text.
 Message AdHocChatRoomMsnImpl.createMessage(String text)
          Creates a Message for this ad-hoc chat room containing text.
 Message OperationSetBasicInstantMessagingMsnImpl.createMessage(String content, String contentType, String encoding, String subject)
           
 

Methods in net.java.sip.communicator.impl.protocol.msn with parameters of type Message
 void OperationSetBasicInstantMessagingMsnImpl.sendInstantMessage(Contact to, Message message)
          Sends the message to the destination indicated by the to contact.
 void AdHocChatRoomMsnImpl.sendMessage(Message message)
          Sends the given message through the participants of this ad-hoc chat room.
 

Uses of Message in net.java.sip.communicator.impl.protocol.rss
 

Classes in net.java.sip.communicator.impl.protocol.rss that implement Message
 class MessageRssImpl
          Very simple message implementation for the Rss protocol.
 

Methods in net.java.sip.communicator.impl.protocol.rss that return Message
 Message OperationSetBasicInstantMessagingRssImpl.createMessage(String messageText)
          Create a Message instance for sending a simple text messages with default (text/html) content type and encoding.
 Message OperationSetBasicInstantMessagingRssImpl.createMessage(String content, String contentType, String encoding, String subject)
           
 

Methods in net.java.sip.communicator.impl.protocol.rss with parameters of type Message
 void OperationSetBasicInstantMessagingRssImpl.sendInstantMessage(Contact to, Message message)
          Sends the message to the destination indicated by the to contact.
 

Uses of Message in net.java.sip.communicator.impl.protocol.sip
 

Classes in net.java.sip.communicator.impl.protocol.sip that implement Message
 class MessageSipImpl
          A simple implementation of the Message interface for SIP/SIMPLE.
 

Methods in net.java.sip.communicator.impl.protocol.sip that return Message
 Message OperationSetBasicInstantMessagingSipImpl.createMessage(String content, String contentType, String encoding, String subject)
           
 

Methods in net.java.sip.communicator.impl.protocol.sip with parameters of type Message
(package private)  javax.sip.message.Request OperationSetBasicInstantMessagingSipImpl.createMessageRequest(Contact to, Message message)
          Construct a Request represent a new message.
 void OperationSetBasicInstantMessagingSipImpl.sendInstantMessage(Contact to, Message message)
          Sends the message to the destination indicated by the to contact.
(package private)  void OperationSetBasicInstantMessagingSipImpl.sendMessageRequest(javax.sip.message.Request messageRequest, Contact to, Message messageContent)
          Sends messageRequest to the specified destination and logs messageContent for later use.
 

Method parameters in net.java.sip.communicator.impl.protocol.sip with type arguments of type Message
 boolean OperationSetTypingNotificationsSipImpl.processResponse(javax.sip.ResponseEvent responseEvent, Map<String,Message> sentMsg)
          Process the responses of sent messages
 boolean SipMessageProcessor.processResponse(javax.sip.ResponseEvent responseEvent, Map<String,Message> sentMessages)
          Process the responses of sent messages
 boolean OperationSetTypingNotificationsSipImpl.processTimeout(javax.sip.TimeoutEvent timeoutEvent, Map<String,Message> sentMessages)
          Process the timeouts of sent messages
 boolean SipMessageProcessor.processTimeout(javax.sip.TimeoutEvent timeoutEvent, Map<String,Message> sentMessages)
          Processes a retransmit or expiration Timeout of an underlying Transactionhandled by this SipListener.
 

Uses of Message in net.java.sip.communicator.impl.protocol.ssh
 

Classes in net.java.sip.communicator.impl.protocol.ssh that implement Message
 class MessageSSHImpl
          Very simple message implementation for the SSH protocol.
 

Methods in net.java.sip.communicator.impl.protocol.ssh that return Message
 Message OperationSetBasicInstantMessagingSSHImpl.createMessage(String content, String contentType, String encoding, String subject)
           
 

Methods in net.java.sip.communicator.impl.protocol.ssh with parameters of type Message
 void ProtocolProviderServiceSSHImpl.connectShell(ContactSSH sshContact, Message firstMessage)
          Creates a shell channel to the remote machine a new jsch session is also created if the current one is invalid
(package private)  void OperationSetBasicInstantMessagingSSHImpl.deliverMessage(Message message, ContactSSH to)
          In case the to Contact corresponds to another ssh protocol provider registered with SIP Communicator, we deliver the message to them, in case the to Contact represents us, we fire a MessageReceivedEvent, and if to is simply a contact in our contact list, then we simply echo the message.
protected  void OperationSetBasicInstantMessagingSSHImpl.fireMessageReceived(Message message, Contact from)
          Notifies all registered message listeners that a message has been received.
 void OperationSetBasicInstantMessagingSSHImpl.sendInstantMessage(Contact to, Message message)
          Sends the message to the destination indicated by the to contact.
 

Uses of Message in net.java.sip.communicator.impl.protocol.yahoo
 

Classes in net.java.sip.communicator.impl.protocol.yahoo that implement Message
 class MessageYahooImpl
          A simple implementation of the Message interface.
 

Methods in net.java.sip.communicator.impl.protocol.yahoo that return Message
 Message OperationSetAdHocMultiUserChatYahooImpl.createMessage(String messageText)
          Creates a message by a given message text.
 Message AdHocChatRoomYahooImpl.createMessage(String messageText)
          Create a Message instance for sending a simple text messages with default (text/plain) content type and encoding.
 Message OperationSetBasicInstantMessagingYahooImpl.createMessage(String content, String contentType, String encoding, String subject)
           
 

Methods in net.java.sip.communicator.impl.protocol.yahoo with parameters of type Message
 void OperationSetBasicInstantMessagingYahooImpl.sendInstantMessage(Contact to, Message message)
          Sends the message to the destination indicated by the to contact.
 void AdHocChatRoomYahooImpl.sendMessage(Message message)
          Sends the message to the destination indicated by the to contact.
 

Uses of Message in net.java.sip.communicator.impl.protocol.zeroconf
 

Classes in net.java.sip.communicator.impl.protocol.zeroconf that implement Message
 class MessageZeroconfImpl
          Very simple message implementation for the Zeroconf protocol.
 

Methods in net.java.sip.communicator.impl.protocol.zeroconf that return Message
 Message OperationSetBasicInstantMessagingZeroconfImpl.createMessage(String content, String contentType, String encoding, String subject)
           
 

Methods in net.java.sip.communicator.impl.protocol.zeroconf with parameters of type Message
 void OperationSetBasicInstantMessagingZeroconfImpl.fireMessageReceived(Message message, Contact from)
          Notifies all registered message listeners that a message has been received.
 void OperationSetBasicInstantMessagingZeroconfImpl.sendInstantMessage(Contact to, Message message)
          Sends the message to the destination indicated by the to contact.
 

Uses of Message in net.java.sip.communicator.service.protocol
 

Classes in net.java.sip.communicator.service.protocol that implement Message
 class AbstractMessage
          Represents a default implementation of Message in order to make it easier for implementers to provide complete solutions while focusing on implementation-specific details.
 

Methods in net.java.sip.communicator.service.protocol that return Message
 Message OperationSetSmsMessaging.createMessage(byte[] content, String contentType, String contentEncoding)
          Create a Message instance for sending arbitrary MIME-encoding content.
 Message ChatRoom.createMessage(byte[] content, String contentType, String contentEncoding, String subject)
          Create a Message instance for sending arbitrary MIME-encoding content.
 Message AbstractOperationSetBasicInstantMessaging.createMessage(byte[] content, String contentType, String encoding, String subject)
          Create a Message instance for sending arbitrary MIME-encoding content.
 Message OperationSetSmsMessaging.createMessage(String messageText)
          Create a Message instance for sending a sms messages with default (text/plain) content type and encoding.
 Message OperationSetBasicInstantMessaging.createMessage(String messageText)
          Create a Message instance for sending a simple text messages with default (text/plain) content type and encoding.
 Message AdHocChatRoom.createMessage(String messageText)
          Create a Message instance for sending a simple text messages with default (text/plain) content type and encoding.
 Message ChatRoom.createMessage(String messageText)
          Create a Message instance for sending a simple text messages with default (text/plain) content type and encoding.
 Message AbstractOperationSetBasicInstantMessaging.createMessage(String messageText)
          Create a Message instance for sending a simple text messages with default (text/plain) content type and encoding.
 Message OperationSetBasicInstantMessaging.createMessage(String content, String contentType, String contentEncoding, String subject)
          Create a Message instance for sending arbitrary MIME-encoding content.
abstract  Message AbstractOperationSetBasicInstantMessaging.createMessage(String content, String contentType, String encoding, String subject)
           
 

Methods in net.java.sip.communicator.service.protocol with parameters of type Message
protected  void AbstractOperationSetBasicInstantMessaging.fireMessageDelivered(Message message, Contact to)
          Notifies all registered message listeners that a message has been delivered successfully to its addressee..
protected  void AbstractOperationSetBasicInstantMessaging.fireMessageDeliveryFailed(Message message, Contact to, int errorCode)
           
protected  void AbstractOperationSetBasicInstantMessaging.fireMessageReceived(Message message, Contact from)
          Notifies all registered message listeners that a message has been received.
 void OperationSetBasicInstantMessaging.sendInstantMessage(Contact to, Message message)
          Sends the message to the destination indicated by the to contact.
 void AdHocChatRoom.sendMessage(Message message)
          Sends the Message to this ad-hoc chat room.
 void ChatRoom.sendMessage(Message message)
          Sends the message to this chat room.
 void OperationSetSmsMessaging.sendSmsMessage(Contact to, Message message)
          Sends the message to the destination indicated by the to contact.
 void OperationSetSmsMessaging.sendSmsMessage(String to, Message message)
          Sends the message to the destination indicated by the to parameter.
 

Uses of Message in net.java.sip.communicator.service.protocol.event
 

Methods in net.java.sip.communicator.service.protocol.event that return Message
 Message AdHocChatRoomMessageDeliveredEvent.getMessage()
          Returns the received message.
 Message ChatRoomMessageDeliveredEvent.getMessage()
          Returns the received message.
 Message ChatRoomMessageDeliveryFailedEvent.getMessage()
          Returns the received message.
 Message AdHocChatRoomMessageDeliveryFailedEvent.getMessage()
          Returns the received message.
 Message AdHocChatRoomMessageReceivedEvent.getMessage()
          Returns the received message.
 Message ChatRoomMessageReceivedEvent.getMessage()
          Returns the received message.
 Message MessageDeliveredEvent.getSourceMessage()
          Returns the message that triggered this event
 Message MessageDeliveryFailedEvent.getSourceMessage()
          Returns the message that triggered this event
 Message MessageReceivedEvent.getSourceMessage()
          Returns the message that triggered this event
 

Constructors in net.java.sip.communicator.service.protocol.event with parameters of type Message
AdHocChatRoomMessageDeliveredEvent(AdHocChatRoom source, long timestamp, Message message, int eventType)
          Creates a MessageDeliveredEvent representing delivery of the source message to the specified to contact.
AdHocChatRoomMessageDeliveryFailedEvent(AdHocChatRoom source, Contact to, int errorCode, Date timestamp, Message message)
          Creates a AdHocChatRoomMessageDeliveryFailedEvent indicating failure of delivery of a message to the specified Contact in the specified AdHocChatRoom.
AdHocChatRoomMessageReceivedEvent(AdHocChatRoom source, Contact from, long timestamp, Message message, int eventType)
          Creates a MessageReceivedEvent representing reception of the source message received from the specified from contact.
ChatRoomMessageDeliveredEvent(ChatRoom source, long timestamp, Message message, int eventType)
          Creates a MessageDeliveredEvent representing delivery of the source message to the specified to contact.
ChatRoomMessageDeliveryFailedEvent(ChatRoom source, ChatRoomMember to, int errorCode, String reason, Date timestamp, Message message)
          Creates a ChatRoomMessageDeliveryFailedEvent indicating failure of delivery of a message to the specified ChatRoomMember in the specified ChatRoom.
ChatRoomMessageReceivedEvent(ChatRoom source, ChatRoomMember from, long timestamp, Message message, int eventType)
          Creates a MessageReceivedEvent representing reception of the source message received from the specified from contact.
MessageDeliveredEvent(Message source, Contact to)
          Constructor.
MessageDeliveredEvent(Message source, Contact to, long timestamp)
          Creates a MessageDeliveredEvent representing delivery of the source message to the specified to contact.
MessageDeliveryFailedEvent(Message source, Contact to, int errorCode)
          Constructor.
MessageDeliveryFailedEvent(Message source, Contact to, int errorCode, long timestamp)
          Creates a MessageDeliveryFailedEvent indicating failure of delivery of the source message to the specified to contact.
MessageDeliveryFailedEvent(Message source, Contact to, int errorCode, long timestamp, String reason)
          Creates a MessageDeliveryFailedEvent indicating failure of delivery of the source message to the specified to contact.
MessageReceivedEvent(Message source, Contact from, long timestamp)
          Creates a MessageReceivedEvent representing reception of the source message received from the specified from contact.
MessageReceivedEvent(Message source, Contact from, long timestamp, int eventType)
          Creates a MessageReceivedEvent representing reception of the source message received from the specified from contact.
 


Jitsi: the OpenSource Java VoIP and Instant Messaging client.

Jitsi, the OpenSource Java VoIP and Instant Messaging client.
Distributable under LGPL license.