public class MultipleRecipientInfo
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
java.util.List<MultipleAddresses.Address> |
getCCAddresses()
Returns the list of
MultipleAddresses.Address
that were the secondary recipients of the packet. |
MultipleAddresses.Address |
getReplyAddress()
Returns the address to which all replies are requested to be sent or
null if
no specific address was provided. |
org.jxmpp.jid.Jid |
getReplyRoom()
Returns the JID of a MUC room to which responses should be sent or
null if
no specific address was provided. |
java.util.List<MultipleAddresses.Address> |
getTOAddresses()
Returns the list of
MultipleAddresses.Address
that were the primary recipients of the packet. |
boolean |
shouldNotReply()
Returns true if the received stanza should not be replied.
|
public java.util.List<MultipleAddresses.Address> getTOAddresses()
MultipleAddresses.Address
that were the primary recipients of the packet.public java.util.List<MultipleAddresses.Address> getCCAddresses()
MultipleAddresses.Address
that were the secondary recipients of the packet.public org.jxmpp.jid.Jid getReplyRoom()
null
if
no specific address was provided. When no specific address was provided then the reply
can be sent to any or all recipients. Otherwise, the user should join the specified room
and send the reply to the room.null
if
no specific address was provided.public boolean shouldNotReply()
MultipleRecipientManager.reply(org.jivesoftware.smack.XMPPConnection, org.jivesoftware.smack.packet.Message, org.jivesoftware.smack.packet.Message)
to send replies.public MultipleAddresses.Address getReplyAddress()
null
if
no specific address was provided. When no specific address was provided then the reply
can be sent to any or all recipients.null
if
no specific address was provided.