| Package | Description |
|---|---|
| abs.ixi.client | |
| abs.ixi.client.file.sfcm | |
| abs.ixi.client.io.multipart | |
| abs.ixi.client.xmpp | |
| abs.ixi.client.xmpp.packet |
| Modifier and Type | Method and Description |
|---|---|
JID |
Platform.getJabberSearchServiceJID() |
JID |
Platform.getMucServiceJID()
Returns MUC service JID
|
JID |
Platform.getServerJID()
Returns domain name
|
JID |
Platform.getUserJID()
Return logged in user's
JID |
| Modifier and Type | Method and Description |
|---|---|
boolean |
UserManager.addChatRoomAdmin(JID roomJID,
JID userJID)
Request to add chat room admin.
|
boolean |
UserManager.addChatRoomMember(JID roomJID,
JID userJID)
Request to add chat room member.
|
boolean |
UserManager.addChatRoomOwner(JID roomJID,
JID userJID)
Request to add chat room owner.
|
boolean |
UserManager.addRosterMember(JID jid,
String name)
Request to add a memeber to the user Roster.
|
boolean |
UserManager.destroyChatRoom(JID roomJID,
String reason)
Destroy chat room.
|
FileTransferFuture |
ChatManager.downloadFile(JID from,
String fileId,
ContentType contentType)
Download a file for which a
Message with media content has been
received. |
void |
ChatManager.downloadFile(JID from,
String fileId,
ContentType contentType,
Callback<File,FileTransfer.FailureReason> callback)
Download a file for which a
Message with media content has been
received. |
Set<ChatRoom.RoomConfigParam> |
UserManager.getChatRoomConfigParams(JID roomJID)
Request to get list of room configurations which can be updated.
|
UserProfileData |
UserManager.getUserProfileData(JID userJID)
It return given user's data.
|
boolean |
UserManager.removeChatRoomMember(JID roomJID,
JID userJID)
Request to Remove member from chat room.
|
boolean |
UserManager.removeRosterMember(JID jid)
Remove Roster member from logged-in user Roster.
|
IQ |
UserManager.removeRosterMember(JID jid,
String name,
Callback<IQ,Exception> callback)
Remove a roster member from logged-in user roster.
|
boolean |
ChatManager.say(String messageId,
String text,
JID to)
Convenience method to send a text message to a
JID. |
boolean |
ChatManager.say(String messageId,
String text,
JID to,
boolean isGroup)
A
Message packet is created with the given text and sent to
XMPPStreamManager which writes it on the underlying connection. |
boolean |
ChatManager.say(String messageId,
String text,
JID to,
boolean isGroup,
boolean isMarkable)
A
Message packet is created with the given text and sent to
XMPPStreamManager which writes it on the underlying connection. |
boolean |
ChatManager.say(String conversationId,
String messageId,
String text,
JID to,
boolean isGroup,
boolean isMarkable)
A
Message packet is created with the given text and sent to
XMPPStreamManager which writes it on the underlying connection. |
void |
UserManager.sendAddChatRoomMemberRequest(JID roomJID,
JID userJID)
Request to add chat room member.
|
boolean |
UserManager.sendAddRosterMemberRequest(JID jid,
String name)
Send request to add a memeber to the user Roster.
|
boolean |
UserManager.sendChangeUserNicknameRequest(JID roomJID,
String nickName)
Request to change user nick name in given chat room
|
boolean |
ChatManager.sendComposingCSN(JID to)
Sending COMPOSING chat state notification explained in XEP-0085(Chat
State Notifications)
|
boolean |
UserManager.sendGetChatRoomInfoRequest(JID roomJID)
Request to get info of chat room.
|
boolean |
UserManager.sendGetChatRoomMembersRequest(JID roomJID)
Send request to retrieve memebers list of a chatroom.
|
boolean |
ChatManager.sendGoneCSN(JID to)
Sending GONE chat state notification explained in XEP-0085(Chat State
Notifications)
|
boolean |
ChatManager.sendInactiveCSN(JID to)
Sending INACTIVE chat state notification explained in XEP-0085(Chat State
Notifications)
|
boolean |
UserManager.sendJoinChatRoomRequest(JID roomJID,
String nickName)
Request to join a ChatRoom.
|
boolean |
UserManager.sendLeaveChatRoomRequest(JID roomJID)
Request to leave a ChatRoom
|
boolean |
ChatManager.sendMarkableMessage(String messageId,
String text,
JID to,
boolean isGroup)
A
Message packet is created with the given text and sent to
XMPPStreamManager which writes it on the underlying connection. |
boolean |
ChatManager.sendMarkableMessage(String conversationId,
String messageId,
String text,
JID to,
boolean isGroup)
A
Message packet is created with the given text and sent to
XMPPStreamManager which writes it on the underlying connection. |
boolean |
ChatManager.sendMarkableMessageWithCSN(String messageId,
String text,
JID to,
boolean isGroup)
A
Message packet is created with the given text and sent to
XMPPStreamManager which writes it on the underlying connection. |
boolean |
ChatManager.sendMarkableMessageWithCSN(String conversationId,
String messageId,
String text,
JID to,
boolean isGroup)
A
Message packet is created with the given text and sent to
XMPPStreamManager which writes it on the underlying connection. |
boolean |
ChatManager.sendMediaMessage(String conversationId,
String messageId,
ContentType contentType,
String mediaThumb,
JID toJID,
boolean isGroup,
boolean isMarkable,
boolean isMDRSupported,
boolean isCSNSupported)
A
Message packet is created with the given mediaId and sent to
XMPPStreamManager which writes it on the underlying connection. |
boolean |
ChatManager.sendMsgCMAcknowledgedReceipt(String messageId,
JID to,
boolean isGroup)
Sending message acknowledged receipt to sender explained in XEP-0333(Chat
Markers)
|
boolean |
ChatManager.sendMsgCMDisplayedReceipt(String messageId,
JID to,
boolean isGroup)
Sending message displayed receipt to sender explained in XEP-0333(Chat
Markers)
|
boolean |
ChatManager.sendMsgCMReceivedReceipt(String messageId,
JID to,
boolean isGroup)
Sending message received receipt to sender explained in XEP-0333(Chat
Markers)
|
boolean |
ChatManager.sendMsgMDRReceivedReceipt(String messageId,
JID to,
boolean isGroup)
Sending message received receipt to sender explained in XEP-0184(Message
Deliver receipt)
|
boolean |
ChatManager.sendPausedCSN(JID to)
Sending PAUSED chat state notification explained in XEP-0085(Chat State
Notifications)
|
boolean |
UserManager.sendRemoveRosterMemberRequest(JID jid,
String name)
Send request to remove Roster member from logged-in user Roster.
|
boolean |
ChatManager.sendTextMessage(String conversationId,
String messageId,
String text,
JID to,
boolean isGroup,
boolean isMarkable,
boolean isMDRSupported,
boolean isCSNSupported)
Send a message
|
boolean |
UserManager.sendUpdateRosterMemberNameRequest(JID jid,
String name)
Send request to server to update Roster member name.
|
boolean |
PresenceManager.subscribe(JID to) |
boolean |
PresenceManager.unsbscribe(JID to) |
boolean |
UserManager.updateChatRoomMember(JID roomJID,
JID userJID,
String nickName,
ChatRoom.Affiliation affiliation,
ChatRoom.Role role)
Request to update chat room member.
|
boolean |
UserManager.updateRoomSubject(JID roomJID,
String subject)
Send a request to change Chat room subject.
|
boolean |
UserManager.updateRosterMemberName(JID jid,
String name)
Request to server to update Roster member name.
|
IQ |
UserManager.updateRosterMemberName(JID jid,
String name,
Callback<IQ,Exception> callback)
Update name of a roster member.
|
void |
ChatManager.uploadFile(String mediaId,
File file,
ContentType contentType,
JID to,
Callback<String,FileTransfer.FailureReason> callback)
Upload a file on to server
|
| Modifier and Type | Method and Description |
|---|---|
JID |
InboundFileTransfer.getFrom() |
JID |
OutboundFileTransfer.getTo() |
| Modifier and Type | Method and Description |
|---|---|
FileTransferFuture |
FileTransferManager.transferFileInbound(JID from,
String fileId,
ContentType contentType)
File thumb and its unique id is transferred to receiver immediately.
|
void |
FileTransferManager.transferFileInbound(JID from,
String fileId,
ContentType contentType,
Callback<File,FileTransfer.FailureReason> callback)
File thumb and its unique id is transferred to receiver immediately.
|
FileTransferFuture |
FileTransferManager.transferFileOutbound(String mediaId,
File file,
ContentType contentType,
JID to) |
void |
FileTransferManager.transferFileOutbound(String messageId,
File file,
ContentType contentType,
JID to,
Callback<String,FileTransfer.FailureReason> callback)
Sends message with
MediaContent to media receiver. |
| Constructor and Description |
|---|
InboundFileTransfer(JID from,
String fileId,
Callback<File,FileTransfer.FailureReason> callback) |
InboundFileTransfer(JID from,
String fileId,
ContentType contentType,
Callback<File,FileTransfer.FailureReason> callback) |
OutboundFileTransfer(String fileId,
File file,
ContentType contentType,
JID to) |
OutboundFileTransfer(String fileId,
File file,
ContentType contentType,
JID to,
Callback<String,FileTransfer.FailureReason> callback) |
| Modifier and Type | Method and Description |
|---|---|
MultipartMessageBuilder |
MultipartMessageBuilder.withFromJID(JID from) |
| Constructor and Description |
|---|
JID(JID bareJID,
String resource) |
| Modifier and Type | Field and Description |
|---|---|
protected JID |
Stanza.from |
protected JID |
Stanza.to |
| Modifier and Type | Method and Description |
|---|---|
JID |
StreamHeader.getFrom() |
JID |
Stanza.getFrom() |
JID |
UserRegistrationData.getJabberId() |
JID |
UserProfileData.getJabberId() |
JID |
Roster.RosterItem.getJid() |
JID |
ChatRoom.getRoomJID() |
JID |
ChatRoom.ChatRoomMember.getRoomJID() |
JID |
StreamHeader.getTo() |
JID |
Stanza.getTo() |
JID |
UserSearchData.Item.getUserJID() |
JID |
ChatRoom.ChatRoomMember.getUserJID() |
| Modifier and Type | Method and Description |
|---|---|
ChatRoom.ChatRoomMember |
ChatRoom.getMember(JID userJID) |
boolean |
ChatRoom.isRoomAdmin(JID userJID) |
boolean |
ChatRoom.isRoomMember(JID userJID) |
boolean |
ChatRoom.isRoomOwner(JID userJID) |
void |
StreamHeader.setFrom(JID from) |
void |
Stanza.setFrom(JID from) |
void |
UserRegistrationData.setJabberId(JID jabberId) |
void |
UserProfileData.setJabberId(JID jabberId) |
void |
Roster.RosterItem.setJid(JID jid) |
void |
ChatRoom.setRoomJID(JID roomJID) |
void |
StreamHeader.setTo(JID to) |
void |
Stanza.setTo(JID to) |
void |
UserSearchData.Item.setUserJID(JID userJID) |
void |
ChatRoom.ChatRoomMember.setUserJID(JID userJID) |
| Constructor and Description |
|---|
ChatRoom(JID roomJID,
String name,
String subject) |
ChatRoom(JID roomJID,
String name,
String subject,
boolean status,
ChatRoom.AccessMode accessMode) |
ChatRoom(JID roomJID,
String name,
String subject,
ChatRoom.AccessMode accessMode) |
ChatRoomMember(JID userJID,
String nickName) |
ChatRoomMember(JID userJID,
String nickName,
boolean exist) |
ChatRoomMember(JID userJID,
String nickName,
ChatRoom.Affiliation affiliation,
ChatRoom.Role role,
boolean exist) |
RosterItem(JID jid) |
RosterItem(JID jid,
PresenceSubscription subscription) |
RosterItem(JID jid,
String name) |
RosterItem(JID jid,
String name,
PresenceSubscription subscription) |
UserRegistrationData(JID jabberId) |
Copyright © 2019. All rights reserved.