Uses of Interface
rocks.xmpp.addr.Jid
-
-
Uses of Jid in rocks.xmpp.addr
Classes in rocks.xmpp.addr that implement Jid Modifier and Type Class Description class
MalformedJid
Represents a malformed JID in order to handle thejid-malformed
error.Methods in rocks.xmpp.addr that return Jid Modifier and Type Method Description Jid
Jid. asBareJid()
Gets the bare JID representation of this JID, i.e. removes the resource part.Jid
MalformedJid. asBareJid()
Jid
Jid. atSubdomain(CharSequence subdomain)
Creates a new JID at a subdomain and at the same domain as this JID.Jid
MalformedJid. atSubdomain(CharSequence subdomain)
static Jid
Jid. of(CharSequence jid)
Creates a JID from an unescaped string.static Jid
Jid. of(CharSequence local, CharSequence domain, CharSequence resource)
Returns a full JID with a domain and resource part, e.g.static Jid
Jid. ofDomain(CharSequence domain)
Creates a bare JID with only the domain part, e.g.static Jid
Jid. ofDomainAndResource(CharSequence domain, CharSequence resource)
Creates a full JID with a domain and resource part, e.g.static Jid
Jid. ofEscaped(CharSequence jid)
Creates a JID from a escaped JID string.static Jid
Jid. ofLocalAndDomain(CharSequence local, CharSequence domain)
Creates a bare JID with a local and domain part, e.g.Jid
Jid. withLocal(CharSequence local)
Creates a new JID with a new local part and the same domain and resource part of the current JID.Jid
MalformedJid. withLocal(CharSequence local)
Jid
Jid. withResource(CharSequence resource)
Creates a new full JID with a resource and the same local and domain part of the current JID.Jid
MalformedJid. withResource(CharSequence resource)
-
Uses of Jid in rocks.xmpp.core
Methods in rocks.xmpp.core that return Jid Modifier and Type Method Description Jid
Addressable. getJid()
Gets the JID of the addressable.Jid
Session. getLocalXmppAddress()
Gets the local XMPP address.Jid
Session. getRemoteXmppAddress()
Gets the remote XMPP address. -
Uses of Jid in rocks.xmpp.core.bind.model
Methods in rocks.xmpp.core.bind.model that return Jid Modifier and Type Method Description Jid
Bind. getJid()
Gets the JID, which has been generated by the server after resource binding.Constructors in rocks.xmpp.core.bind.model with parameters of type Jid Constructor Description Bind(Jid jid)
Creates a<bind/>
element with a JID. -
Uses of Jid in rocks.xmpp.core.session
Methods in rocks.xmpp.core.session that return Jid Modifier and Type Method Description Jid
XmppSession. getConnectedResource()
The connected resource, which is assigned by the server.Jid
XmppSession. getDomain()
Gets the XMPP domain of the connected server.Jid
XmppSession. getLocalXmppAddress()
Jid
XmppSession. getRemoteXmppAddress()
Methods in rocks.xmpp.core.session with parameters of type Jid Modifier and Type Method Description void
XmppClient. connect(Jid from)
Connects to the XMPP server.abstract void
XmppSession. connect(Jid from)
AsyncResult<Boolean>
XmppSession. isSupported(String feature, Jid jid)
Determines support of another XMPP entity for a given feature. -
Uses of Jid in rocks.xmpp.core.session.model
Methods in rocks.xmpp.core.session.model that return Jid Modifier and Type Method Description Jid
SessionOpen. getFrom()
Gets the 'from' attribute.Jid
SessionOpen. getTo()
Gets the 'to' attribute. -
Uses of Jid in rocks.xmpp.core.stanza.model
Methods in rocks.xmpp.core.stanza.model that return Jid Modifier and Type Method Description Jid
StanzaError. getBy()
Gets the 'by' attribute.Jid
Stanza. getFrom()
Gets the stanza's 'from' attribute.Jid
Stanza. getTo()
Gets the stanza's 'to' attribute, i.e. the recipient.Methods in rocks.xmpp.core.stanza.model with parameters of type Jid Modifier and Type Method Description static IQ
IQ. get(Jid to, Object extension)
Creates an IQ of type 'get' with a random id.static boolean
Stanza. isToItselfOrServer(Stanza stanza, CharSequence domain, Jid connectedResource)
Checks if a stanza is addressed either to itself or to the server.static IQ
IQ. set(Jid to, Object extension)
Creates an IQ of type 'set' with a random id.void
Stanza. setFrom(Jid from)
Sets the stanza's 'from' attribute, i.e. the sender.void
Stanza. setTo(Jid to)
Sets the stanza's 'to' attribute, i.e. the recipient.Constructors in rocks.xmpp.core.stanza.model with parameters of type Jid Constructor Description IQ(Jid to, IQ.Type type, Object extension)
Creates an IQ stanza with the given receiver, type and extension.IQ(Jid to, IQ.Type type, Object extension, String id)
Creates an IQ stanza with the given receiver, id, type and extension.IQ(Jid to, IQ.Type type, Object extension, String id, Jid from, Locale language, StanzaError error)
Creates an IQ stanza with the given receiver, id, type, extension and error.Message(Jid to)
Constructs an empty message.Message(Jid to, Message.Type type)
Constructs a message with a type.Message(Jid to, Message.Type type, String body)
Constructs a message with body and type.Message(Jid to, Message.Type type, String body, String subject)
Constructs a message with body and type.Message(Jid to, Message.Type type, String body, String subject, String thread)
Constructs a message with body and type.Message(Jid to, Message.Type type, String body, String subject, String thread, String parentThread, String id, Jid from, Locale language, Collection<?> extensions, StanzaError error)
Constructs a message with body and type.Message(Jid to, Message.Type type, Collection<Text> bodies, Collection<Text> subjects, String thread, String parentThread, String id, Jid from, Locale language, Collection<?> extensions, StanzaError error)
Constructs a message with all possible values.Presence(Jid to)
Constructs a directed presence.Presence(Jid to, Presence.Show show, String status)
Constructs a directed presence with a specific 'show' attribute and status.Presence(Jid to, Presence.Type type, String status)
Constructs a directed presence, which is useful for requesting subscription or for exiting a multi-user chat.Presence(Jid to, Presence.Type type, String status, String id)
Constructs a directed presence, which is useful for requesting subscription or for exiting a multi-user chat.Presence(Jid to, Presence.Type type, Presence.Show show, Collection<Text> status, byte priority, String id, Jid from, Locale language, Collection<?> extensions, StanzaError error)
Constructs a presence with all possible values.StanzaError(StanzaError.Type type, Condition condition, String text, Locale language, Object extension, Jid by)
Creates a stanza error with all possible values. -
Uses of Jid in rocks.xmpp.core.stream.model
Methods in rocks.xmpp.core.stream.model that return Jid Modifier and Type Method Description Jid
StreamHeader. getFrom()
Gets the 'from' attribute.Jid
StreamHeader. getTo()
Gets the 'to' attribute.Methods in rocks.xmpp.core.stream.model with parameters of type Jid Modifier and Type Method Description static StreamHeader
StreamHeader. create(Jid from, Jid to, String id, String version, Locale lang, String contentNamespace, QName... additionalNamespaces)
Creates a stream header.static StreamHeader
StreamHeader. initialClientToServer(Jid from, Jid to, Locale lang, String contentNamespace, QName... additionalNamespaces)
Creates an initial stream header for client-to-server or component-to-server streams.static StreamHeader
StreamHeader. initialClientToServer(Jid from, Jid to, Locale lang, QName... additionalNamespaces)
Creates an initial stream header for client-to-server streams.static StreamHeader
StreamHeader. initialServerToServer(Jid from, Jid to, Locale lang, QName... additionalNamespaces)
Creates an initial stream header for server-to-server streams.static StreamHeader
StreamHeader. responseClientToServer(Jid from, Jid to, String id, Locale lang, QName... additionalNamespaces)
Creates a response stream header for client-to-server streams.static StreamHeader
StreamHeader. responseServerToServer(Jid from, Jid to, String id, Locale lang, QName... additionalNamespaces)
Creates a response stream header for server-to-server streams. -
Uses of Jid in rocks.xmpp.extensions.address.model
Methods in rocks.xmpp.extensions.address.model that return Jid Modifier and Type Method Description Jid
Address. getJid()
Gets the JID.Constructors in rocks.xmpp.extensions.address.model with parameters of type Jid Constructor Description Address(Address.Type type, Jid jid, CharSequence description, CharSequence node, Object... extensions)
Address(Address.Type type, Jid jid, CharSequence description, Object... extensions)
Address(Address.Type type, Jid jid, Object... extensions)
-
Uses of Jid in rocks.xmpp.extensions.amp.model
Methods in rocks.xmpp.extensions.amp.model that return Jid Modifier and Type Method Description Jid
AdvancedMessageProcessing. getFrom()
The 'from' attribute specifies the original sender of the containing<message/>
stanza.Jid
AdvancedMessageProcessing. getTo()
The 'to' attribute specifies the original (intended) recipient of the containing<message/>
stanza.Constructors in rocks.xmpp.extensions.amp.model with parameters of type Jid Constructor Description AdvancedMessageProcessing(List<Rule> rules, Rule.Action status, Jid from, Jid to)
Constructs an<amp/>
element with rules, status, from and to attribute. -
Uses of Jid in rocks.xmpp.extensions.avatar
Methods in rocks.xmpp.extensions.avatar that return Jid Modifier and Type Method Description Jid
AvatarChangeEvent. getContact()
Gets the bare JID of the contact who's associated with the avatar, i.e. who changed his or her avatar.Methods in rocks.xmpp.extensions.avatar with parameters of type Jid Modifier and Type Method Description AsyncResult<byte[]>
AvatarManager. getAvatar(Jid contact)
Gets the user avatar as byte array.AsyncResult<byte[]>
CombinedAvatarManager. getAvatar(Jid contact)
Gets the user avatar from the user's vCard.AsyncResult<byte[]>
UserAvatarProtocol. getAvatar(Jid contact)
AsyncResult<BufferedImage>
AbstractAvatarManager. getAvatarImage(Jid contact)
AsyncResult<BufferedImage>
AvatarManager. getAvatarImage(Jid contact)
Gets the user avatar. -
Uses of Jid in rocks.xmpp.extensions.blocking
Methods in rocks.xmpp.extensions.blocking that return types with arguments of type Jid Modifier and Type Method Description List<Jid>
BlockingEvent. getBlockedContacts()
Gets the (newly) blocked contacts, which were pushed by the server.AsyncResult<Set<Jid>>
BlockingManager. getBlockedContacts()
Retrieves the blocked contacts.List<Jid>
BlockingEvent. getUnblockedContacts()
Gets the (newly) unblocked contacts, which were pushed by the server.Methods in rocks.xmpp.extensions.blocking with parameters of type Jid Modifier and Type Method Description AsyncResult<IQ>
BlockingManager. blockContact(Jid... jids)
Blocks communications with contacts.AsyncResult<IQ>
BlockingManager. unblockContact(Jid... jids)
Unblocks communications with specific contacts or with all contacts. -
Uses of Jid in rocks.xmpp.extensions.blocking.model
Methods in rocks.xmpp.extensions.blocking.model that return types with arguments of type Jid Modifier and Type Method Description List<Jid>
Blockable. getItems()
Gets the blocked items.Constructor parameters in rocks.xmpp.extensions.blocking.model with type arguments of type Jid Constructor Description Block(Collection<Jid> blockedItems)
BlockList(List<Jid> blockedItems)
Creates a block list with items.Unblock(Collection<Jid> unblockedItems)
-
Uses of Jid in rocks.xmpp.extensions.bookmarks
Methods in rocks.xmpp.extensions.bookmarks with parameters of type Jid Modifier and Type Method Description AsyncResult<Void>
BookmarkManager. removeChatRoomBookmark(Jid chatRoom)
Removes a chat room bookmark. -
Uses of Jid in rocks.xmpp.extensions.bookmarks.model
Methods in rocks.xmpp.extensions.bookmarks.model that return Jid Modifier and Type Method Description Jid
ChatRoomBookmark. getRoom()
Gets the JID of the chat room.Constructors in rocks.xmpp.extensions.bookmarks.model with parameters of type Jid Constructor Description ChatRoomBookmark(String name, Jid room)
Creates a conference bookmark.ChatRoomBookmark(String name, Jid room, String nick, String password, boolean autojoin)
Creates a conference bookmark. -
Uses of Jid in rocks.xmpp.extensions.bytestreams
Methods in rocks.xmpp.extensions.bytestreams with parameters of type Jid Modifier and Type Method Description abstract AsyncResult<ByteStreamSession>
ByteStreamManager. initiateSession(Jid receiver, String sessionId)
Initiates a byte stream session with another entity. -
Uses of Jid in rocks.xmpp.extensions.bytestreams.ibb
Methods in rocks.xmpp.extensions.bytestreams.ibb with parameters of type Jid Modifier and Type Method Description AsyncResult<ByteStreamSession>
InBandByteStreamManager. initiateSession(Jid receiver, String sessionId)
AsyncResult<ByteStreamSession>
InBandByteStreamManager. initiateSession(Jid receiver, String sessionId, int blockSize)
Initiates an in-band byte stream session. -
Uses of Jid in rocks.xmpp.extensions.bytestreams.s5b
Methods in rocks.xmpp.extensions.bytestreams.s5b with parameters of type Jid Modifier and Type Method Description AsyncResult<ByteStreamSession>
Socks5ByteStreamManager. initiateSession(Jid target, String sessionId)
Initiates a SOCKS5 session with a target. -
Uses of Jid in rocks.xmpp.extensions.bytestreams.s5b.model
Methods in rocks.xmpp.extensions.bytestreams.s5b.model that return Jid Modifier and Type Method Description Jid
StreamHost. getJid()
Gets the JabberID of the StreamHost for communication over XMPP.Jid
Socks5ByteStream. getStreamHostUsed()
Gets the used stream host.Methods in rocks.xmpp.extensions.bytestreams.s5b.model with parameters of type Jid Modifier and Type Method Description static Socks5ByteStream
Socks5ByteStream. activate(String sessionId, Jid jid)
Creates a<query/>
element with an<activate/>
child element.static String
Socks5ByteStream. hash(String sessionId, Jid requesterJid, Jid targetJid)
Creates the hexadecimal-encoded SHA-1 hash for usage in SOCKS5 negotiation.static Socks5ByteStream
Socks5ByteStream. streamHostUsed(String sessionId, Jid jid)
Creates a<query/>
element with an<streamhost-used/>
child element.Constructors in rocks.xmpp.extensions.bytestreams.s5b.model with parameters of type Jid Constructor Description Socks5ByteStream(String sessionId, Collection<StreamHost> streamHosts, Jid requester, Jid target)
Creates a<query/>
element with an<streamhost/>
child elements.StreamHost(Jid jid, String host, int port)
Creates a<streamhost/>
element. -
Uses of Jid in rocks.xmpp.extensions.caps
Methods in rocks.xmpp.extensions.caps with parameters of type Jid Modifier and Type Method Description AsyncResult<DiscoverableInfo>
EntityCapabilitiesManager. discoverCapabilities(Jid jid)
Discovers capabilities for the given entity.DiscoverableInfo
AbstractEntityCapabilitiesProtocol. getInfo(Jid to, Jid from, String node, Locale locale)
void
AbstractEntityCapabilitiesProtocol. handleEntityCapabilities(EntityCapabilities entityCapabilities, Jid entity)
Handles entity capabilities by associating them to the entity or discovering the entity's capabilities if they are not cached.default AsyncResult<Boolean>
EntityCapabilitiesManager. isSupported(String feature, Jid jid)
Checks whether a feature is supported by checking the capabilities set of the entity.DiscoverableInfo
EntityCapabilitiesManager. readEntityCapabilities(Jid entity)
Reads entity capabilities for an XMPP entity (JID).void
EntityCapabilitiesManager. writeEntityCapabilities(Jid entity, DiscoverableInfo discoverableInfo)
Writes entity capabilities for an XMPP entity (JID). -
Uses of Jid in rocks.xmpp.extensions.caps.client
Methods in rocks.xmpp.extensions.caps.client with parameters of type Jid Modifier and Type Method Description AsyncResult<DiscoverableInfo>
ClientEntityCapabilitiesManager. discoverCapabilities(Jid jid)
Discovers the capabilities of another XMPP entity.DiscoverableInfo
ClientEntityCapabilitiesManager. readEntityCapabilities(Jid entity)
void
ClientEntityCapabilitiesManager. writeEntityCapabilities(Jid entity, DiscoverableInfo discoverableInfo)
-
Uses of Jid in rocks.xmpp.extensions.chatstates
Methods in rocks.xmpp.extensions.chatstates with parameters of type Jid Modifier and Type Method Description AsyncResult<Boolean>
ChatStateManager. isSupported(Jid jid)
Indicates whether chat state notifications are supported by the peer. -
Uses of Jid in rocks.xmpp.extensions.component.accept
Methods in rocks.xmpp.extensions.component.accept with parameters of type Jid Modifier and Type Method Description void
ExternalComponent. connect(Jid from)
-
Uses of Jid in rocks.xmpp.extensions.data.model
Methods in rocks.xmpp.extensions.data.model that return Jid Modifier and Type Method Description Jid
DataForm. findValueAsJid(String name)
Finds the field and gets the value as JID.Jid
DataForm.Field. getValueAsJid()
Returns the first value as JID, e.g. for theDataForm.Field.Type.JID_SINGLE
field type.Methods in rocks.xmpp.extensions.data.model that return types with arguments of type Jid Modifier and Type Method Description List<Jid>
DataForm. findValuesAsJid(String name)
Finds the field and gets its values as JID list.List<Jid>
DataForm.Field. getValuesAsJid()
Returns a JID list for theDataForm.Field.Type.JID_MULTI
field type.Methods in rocks.xmpp.extensions.data.model with parameters of type Jid Modifier and Type Method Description DataForm.Field.Builder
DataForm.Field.Builder. value(Jid value)
Sets the value as JID.Method parameters in rocks.xmpp.extensions.data.model with type arguments of type Jid Modifier and Type Method Description DataForm.Field.Builder
DataForm.Field.Builder. valuesJid(Collection<Jid> values)
Sets the values as JIDs. -
Uses of Jid in rocks.xmpp.extensions.delay.model
Methods in rocks.xmpp.extensions.delay.model that return Jid Modifier and Type Method Description Jid
DelayedDelivery. getFrom()
Gets the Jabber ID of the entity that originally sent the XML stanza or that delayed the delivery of the stanza (e.g., the address of a multi-user chat room).Constructors in rocks.xmpp.extensions.delay.model with parameters of type Jid Constructor Description DelayedDelivery(Instant timestamp, Jid from, String reason)
Creates a delayed delivery element with all attributes. -
Uses of Jid in rocks.xmpp.extensions.dialback.model
Methods in rocks.xmpp.extensions.dialback.model that return Jid Modifier and Type Method Description Jid
Dialback. getFrom()
Jid
Dialback. getTo()
Constructors in rocks.xmpp.extensions.dialback.model with parameters of type Jid Constructor Description Result(Jid from, Jid to, boolean valid)
Creates a valid or invalid verification result from the receiving server to the initiating server.Result(Jid from, Jid to, String key)
Creates a verification request from the initiating server to the receiving server.Result(Jid from, Jid to, StanzaError error)
Creates a dialback error from the receiving server to the initiating server.Verify(Jid from, Jid to, String id, boolean valid)
Creates a verification result from the authoritative server to the receiving server.Verify(Jid from, Jid to, String id, String key)
Creates a verification request from the receiving server to the authoritative server.Verify(Jid from, Jid to, String id, StanzaError error)
Creates a dialback error from the authoritative server to the receiving server. -
Uses of Jid in rocks.xmpp.extensions.disco
Methods in rocks.xmpp.extensions.disco with parameters of type Jid Modifier and Type Method Description AsyncResult<DiscoverableInfo>
AbstractServiceDiscoveryManager. discoverInformation(Jid jid)
AsyncResult<DiscoverableInfo>
ServiceDiscoveryManager. discoverInformation(Jid jid)
Discovers information about another XMPP entity.AsyncResult<DiscoverableInfo>
ServiceDiscoveryManager. discoverInformation(Jid jid, String node)
Discovers information about another XMPP entity targeted at a specific node.AsyncResult<ItemNode>
AbstractServiceDiscoveryManager. discoverItems(Jid jid)
AsyncResult<ItemNode>
AbstractServiceDiscoveryManager. discoverItems(Jid jid, String node)
AsyncResult<ItemNode>
AbstractServiceDiscoveryManager. discoverItems(Jid jid, ResultSetManagement resultSet)
AsyncResult<ItemNode>
ServiceDiscoveryManager. discoverItems(Jid jid)
Discovers item associated with another XMPP entity.AsyncResult<ItemNode>
ServiceDiscoveryManager. discoverItems(Jid jid, String node)
Discovers item associated with another XMPP entity.AsyncResult<ItemNode>
ServiceDiscoveryManager. discoverItems(Jid jid, String node, ResultSetManagement resultSetManagement)
Discovers item associated with another XMPP entity.AsyncResult<ItemNode>
ServiceDiscoveryManager. discoverItems(Jid jid, ResultSetManagement resultSet)
Discovers item associated with another XMPP entity.AsyncResult<List<Item>>
AbstractServiceDiscoveryManager. discoverServices(Jid jid, String feature)
AsyncResult<List<Item>>
AbstractServiceDiscoveryManager. discoverServices(Jid jid, Identity identity)
AsyncResult<List<Item>>
ServiceDiscoveryManager. discoverServices(Jid jid, String feature)
Discovers a service on the given entity by its feature namespace.AsyncResult<List<Item>>
ServiceDiscoveryManager. discoverServices(Jid jid, Identity identity)
Discovers a service on the given entity by its identity. -
Uses of Jid in rocks.xmpp.extensions.disco.client
Methods in rocks.xmpp.extensions.disco.client with parameters of type Jid Modifier and Type Method Description AsyncResult<DiscoverableInfo>
ClientServiceDiscoveryManager. discoverInformation(Jid jid, String node)
Discovers information about another XMPP entity targeted at a specific node.AsyncResult<ItemNode>
ClientServiceDiscoveryManager. discoverItems(Jid jid, String node, ResultSetManagement resultSetManagement)
Discovers item associated with another XMPP entity. -
Uses of Jid in rocks.xmpp.extensions.disco.model.info
Methods in rocks.xmpp.extensions.disco.model.info with parameters of type Jid Modifier and Type Method Description DiscoverableInfo
InfoProvider. getInfo(Jid to, Jid from, String node, Locale locale)
Gets the info appropriate to the given parameters. -
Uses of Jid in rocks.xmpp.extensions.disco.model.items
Methods in rocks.xmpp.extensions.disco.model.items that return Jid Modifier and Type Method Description Jid
ItemElement. getJid()
Gets the JID.Methods in rocks.xmpp.extensions.disco.model.items with parameters of type Jid Modifier and Type Method Description ResultSetProvider<DiscoverableItem>
ItemProvider. getItems(Jid to, Jid from, String node, Locale locale)
Provides the result set of items, in order to manage the result set returned to the requesting entity.Constructors in rocks.xmpp.extensions.disco.model.items with parameters of type Jid Constructor Description ItemElement(Jid jid, String node, String name)
-
Uses of Jid in rocks.xmpp.extensions.filetransfer
Methods in rocks.xmpp.extensions.filetransfer that return Jid Modifier and Type Method Description Jid
FileTransferOfferEvent. getInitiator()
Gets the initiator.Methods in rocks.xmpp.extensions.filetransfer with parameters of type Jid Modifier and Type Method Description AsyncResult<FileTransfer>
FileTransferManager. offerFile(File file, String description, Jid recipient, Duration timeout)
Offers a file to another user.AsyncResult<FileTransfer>
FileTransferManager. offerFile(InputStream source, String fileName, long fileSize, Instant lastModified, String description, Jid recipient, Duration timeout)
Offers a stream to another user.AsyncResult<FileTransfer>
FileTransferManager. offerFile(InputStream source, String fileName, long fileSize, Instant lastModified, String description, Jid recipient, Duration timeout, String sessionId)
Offers a stream to another user.AsyncResult<FileTransfer>
FileTransferManager. offerFile(InputStream source, String fileName, long fileSize, Instant lastModified, String description, Jid recipient, Duration timeout, String sessionId, String mimeType, String hash)
Offers a stream to another user.AsyncResult<IQ>
FileTransferManager. offerFile(URI uri, String description, Jid recipient, Duration timeout)
Offers a file to another user in form of an URL.AsyncResult<FileTransfer>
FileTransferManager. offerFile(Path source, String description, Jid recipient, Duration timeout)
Offers a file to another user.AsyncResult<FileTransfer>
FileTransferManager. offerFile(Path source, String description, Jid recipient, Duration timeout, String mimeType, boolean calculateHash)
Offers a file to another user. -
Uses of Jid in rocks.xmpp.extensions.forward
Methods in rocks.xmpp.extensions.forward with parameters of type Jid Modifier and Type Method Description void
StanzaForwardingManager. forwardMessage(Message message, Jid to)
Forwards a message to another XMPP entity. -
Uses of Jid in rocks.xmpp.extensions.geoloc
Methods in rocks.xmpp.extensions.geoloc that return Jid Modifier and Type Method Description Jid
GeoLocationEvent. getPublisher()
Gets the publisher, who published his or her new geo location. -
Uses of Jid in rocks.xmpp.extensions.httpauth
Methods in rocks.xmpp.extensions.httpauth that return Jid Modifier and Type Method Description Jid
HttpAuthenticationEvent. getRequester()
Gets the requester. -
Uses of Jid in rocks.xmpp.extensions.httpbind.model
Methods in rocks.xmpp.extensions.httpbind.model that return Jid Modifier and Type Method Description Jid
Body. getFrom()
The<body/>
element of the first request MAY also possess a 'from' attribute, which specifies the originator of the first stream and which enables the connection manager to forward the originating entity's identity to the application server.Jid
Body. getTo()
Methods in rocks.xmpp.extensions.httpbind.model with parameters of type Jid Modifier and Type Method Description Body.Builder
Body.Builder. from(Jid from)
Sets the 'from' attribute of the body.Body.Builder
Body.Builder. to(Jid to)
Sets the 'to' attribute of the body. -
Uses of Jid in rocks.xmpp.extensions.jingle
Methods in rocks.xmpp.extensions.jingle with parameters of type Jid Modifier and Type Method Description JingleSession
JingleManager. createSession(Jid responder, String sessionId, Jingle.Content... contents)
-
Uses of Jid in rocks.xmpp.extensions.jingle.apps.filetransfer
Methods in rocks.xmpp.extensions.jingle.apps.filetransfer with parameters of type Jid Modifier and Type Method Description JingleFileTransferSession
JingleFileTransferManager. initiateFileTransferSession(Jid responder, Path file, String description, long timeout)
-
Uses of Jid in rocks.xmpp.extensions.jingle.model
Methods in rocks.xmpp.extensions.jingle.model that return Jid Modifier and Type Method Description Jid
Jingle. getInitiator()
Gets the initiator.Jid
Jingle. getResponder()
Gets the responder.Methods in rocks.xmpp.extensions.jingle.model with parameters of type Jid Modifier and Type Method Description static Jingle
Jingle. initiator(Jid initiator, String sessionId, Jingle.Action action, List<Jingle.Content> contents)
static Jingle
Jingle. responder(Jid responder, String sessionId, Jingle.Action action, List<Jingle.Content> contents)
-
Uses of Jid in rocks.xmpp.extensions.jingle.transports.s5b.model
Methods in rocks.xmpp.extensions.jingle.transports.s5b.model that return Jid Modifier and Type Method Description Jid
S5bTransportMethod.Candidate. getJid()
Gets the candidate's JID.Constructors in rocks.xmpp.extensions.jingle.transports.s5b.model with parameters of type Jid Constructor Description Candidate(String cid, String hostname, int port, Jid jid, S5bTransportMethod.Candidate.Type type, int priority)
-
Uses of Jid in rocks.xmpp.extensions.langtrans
Methods in rocks.xmpp.extensions.langtrans with parameters of type Jid Modifier and Type Method Description AsyncResult<List<LanguageSupport.Item>>
LanguageTranslationManager. discoverLanguageSupport(Jid translationProvider)
Discovers language support for a translation provider.AsyncResult<List<LanguageTranslation.Translation>>
LanguageTranslationManager. translate(Jid translationProvider, String text, Locale sourceLanguage, Locale... destinationLanguage)
Translates a text by sending a query to a translation provider. -
Uses of Jid in rocks.xmpp.extensions.langtrans.model.items
Methods in rocks.xmpp.extensions.langtrans.model.items that return Jid Modifier and Type Method Description Jid
LanguageSupport.Item. getJid()
Gets the JID of the translation service.Constructors in rocks.xmpp.extensions.langtrans.model.items with parameters of type Jid Constructor Description Item(Locale sourceLanguage, Jid jid)
Item(Locale sourceLanguage, Jid jid, Locale destinationLanguage, String engine, Boolean pivotable, String dictionary)
-
Uses of Jid in rocks.xmpp.extensions.last
Methods in rocks.xmpp.extensions.last with parameters of type Jid Modifier and Type Method Description AsyncResult<LastActivity>
LastActivityManager. getLastActivity(Jid jid)
Gets the last activity of the specified user. -
Uses of Jid in rocks.xmpp.extensions.muc
Methods in rocks.xmpp.extensions.muc that return Jid Modifier and Type Method Description Jid
ChatRoom. getAddress()
Gets the room address.Jid
ChatService. getAddress()
Deprecated.Jid
OccupantEvent. getAlternativeRoom()
Gets the alternative room address in case the old room has been destroyed.Jid
InvitationDeclineEvent. getInvitee()
Gets the invitee, who declined the invitation.Jid
InvitationEvent. getInviter()
Gets the inviter.Jid
ChatService. getJid()
Gets the service address.Jid
Occupant. getJid()
Gets the JID of the occupant.Jid
InvitationDeclineEvent. getRoomAddress()
Gets the room address.Jid
InvitationEvent. getRoomAddress()
Gets the room address.Methods in rocks.xmpp.extensions.muc that return types with arguments of type Jid Modifier and Type Method Description List<Jid>
RoomInformation. getContacts()
Gets the contact addresses (normally, room owner or owners).Methods in rocks.xmpp.extensions.muc with parameters of type Jid Modifier and Type Method Description AsyncResult<IQ>
ChatRoom. banUser(Jid user, String reason)
Bans a user.AsyncResult<IQ>
ChatRoom. changeAffiliation(Affiliation affiliation, Jid user, String reason)
Changes the affiliation for an user.ChatRoom
MultiUserChatManager. createChatRoom(Jid roomAddress)
Creates a chat room for the specified room address.ChatService
MultiUserChatManager. createChatService(Jid chatService)
Creates a chat service for the specified service address.AsyncResult<List<Item>>
MultiUserChatManager. discoverEnteredRooms(Jid contact)
Discovers the rooms, where a contact is in.ResultSetProvider<DiscoverableItem>
MultiUserChatManager. getItems(Jid to, Jid from, String node, Locale locale)
AsyncResult<IQ>
ChatRoom. grantAdminStatus(Jid user, String reason)
Grants admin status to a user.AsyncResult<IQ>
ChatRoom. grantMembership(Jid user, String nick, String reason)
Grants membership to a user.AsyncResult<IQ>
ChatRoom. grantOwnerStatus(Jid user, String reason)
Grants owner status to a user.void
ChatRoom. invite(Jid invitee, String reason)
Invites another user to the room.void
ChatRoom. invite(Jid invitee, String reason, boolean direct)
Invites another user to the room.AsyncResult<IQ>
ChatRoom. revokeAdminStatus(Jid user, String reason)
Revokes a user's admin status.AsyncResult<IQ>
ChatRoom. revokeMembership(Jid user, String reason)
Revokes a user's membership.AsyncResult<IQ>
ChatRoom. revokeOwnerStatus(Jid user, String reason)
Revokes a user's owner status. -
Uses of Jid in rocks.xmpp.extensions.muc.conference.model
Methods in rocks.xmpp.extensions.muc.conference.model that return Jid Modifier and Type Method Description Jid
DirectInvitation. getRoomAddress()
Gets the address of the groupchat room to be joined.Constructors in rocks.xmpp.extensions.muc.conference.model with parameters of type Jid Constructor Description DirectInvitation(Jid jid)
DirectInvitation(Jid jid, String password, String reason)
DirectInvitation(Jid jid, String password, String reason, boolean isContinue, String thread)
-
Uses of Jid in rocks.xmpp.extensions.muc.model
Methods in rocks.xmpp.extensions.muc.model that return Jid Modifier and Type Method Description Jid
Destroy. getJid()
The optional address of an alternate venue.Jid
RequestVoice. getJid()
Gets the JID.Methods in rocks.xmpp.extensions.muc.model that return types with arguments of type Jid Modifier and Type Method Description Collection<Jid>
RoomConfiguration. getAdministrators()
Gets the administrators.List<Jid>
RoomInfo. getContacts()
Gets the contact addresses (normally room owners).Collection<Jid>
RoomConfiguration. getOwners()
Gets the owners.Methods in rocks.xmpp.extensions.muc.model with parameters of type Jid Modifier and Type Method Description RequestVoice.Builder
RequestVoice.Builder. jid(Jid jid)
Sets the JID.Method parameters in rocks.xmpp.extensions.muc.model with type arguments of type Jid Modifier and Type Method Description RoomConfiguration.Builder
RoomConfiguration.Builder. administrators(Collection<Jid> admins)
Full list of room admins.RoomInfo.Builder
RoomInfo.Builder. contacts(Collection<Jid> contacts)
Gets the contact addresses (normally, room owner or owners).RoomConfiguration.Builder
RoomConfiguration.Builder. owners(Collection<Jid> owners)
Full list of room owners. -
Uses of Jid in rocks.xmpp.extensions.muc.model.admin
Methods in rocks.xmpp.extensions.muc.model.admin with parameters of type Jid Modifier and Type Method Description static Item
MucAdmin. createItem(Affiliation affiliation, Jid jid)
Creates an item, which can be used as input parameter forMucAdmin.withItems(Item...)
.static Item
MucAdmin. createItem(Affiliation affiliation, Jid jid, String reason)
Creates an item, which can be used as input parameter forMucAdmin.withItems(Item...)
.static Item
MucAdmin. createItem(Affiliation affiliation, Jid jid, String nick, String reason)
Creates an item, which can be used as input parameter forMucAdmin.withItems(Item...)
.static Item
MucAdmin. createItem(Affiliation affiliation, Role role, Jid jid, String nick, Actor actor, String reason)
Creates an item, which can be used as input parameter forMucAdmin.withItems(Item...)
.static MucAdmin
MucAdmin. withItem(Affiliation affiliation, Jid jid, String reason)
Creates a<query/>
element with an<item/>
child element.static MucAdmin
MucAdmin. withItem(Affiliation affiliation, Jid jid, String nick, String reason)
Creates a<query/>
element with an<item/>
child element. -
Uses of Jid in rocks.xmpp.extensions.muc.model.owner
Methods in rocks.xmpp.extensions.muc.model.owner with parameters of type Jid Modifier and Type Method Description static MucOwner
MucOwner. withDestroy(Jid jid, String reason)
Creates a<query/>
element with a<destroy/>
child element. -
Uses of Jid in rocks.xmpp.extensions.muc.model.user
Methods in rocks.xmpp.extensions.muc.model.user that return Jid Modifier and Type Method Description Jid
Decline. getFrom()
Gets the invitee, who declined the invitation.Jid
Invite. getFrom()
Gets the inviter.Jid
Decline. getTo()
Gets the inviter, who sent the invitation.Jid
Invite. getTo()
Gets the invitee.Methods in rocks.xmpp.extensions.muc.model.user with parameters of type Jid Modifier and Type Method Description static MucUser
MucUser. withDecline(Jid to, String reason)
Creates a<x/>
element with a<decline/>
child element.static MucUser
MucUser. withDestroy(Affiliation affiliation, Role role, Jid jid, String reason)
Creates a<x/>
element with an<item/>
and a<destroy/>
child element.static MucUser
MucUser. withItem(Affiliation affiliation, Role role, Jid jid, String nick, Actor actor, String reason, Status... status)
Creates a<x/>
element with an<item/>
and a<status/>
child element.static MucUser
MucUser. withItem(Affiliation affiliation, Role role, Jid jid, String nick, Status... status)
Creates a<x/>
element with an<item/>
and a<status/>
child element.static MucUser
MucUser. withItem(Affiliation affiliation, Role role, Jid jid, Status... status)
Creates a<x/>
element with an<item/>
and a<status/>
child element.Constructors in rocks.xmpp.extensions.muc.model.user with parameters of type Jid Constructor Description Invite(Jid to)
Creates an 'invite' element.Invite(Jid to, String reason)
Creates an invite element with a reason.Invite(Jid to, String reason, String thread)
Creates an 'invite' element with a reason and a 'continue' element. -
Uses of Jid in rocks.xmpp.extensions.offline.model
Methods in rocks.xmpp.extensions.offline.model that return Jid Modifier and Type Method Description Jid
OfflineMessageHeader. getSender()
Gets the sender of the offline message.Constructors in rocks.xmpp.extensions.offline.model with parameters of type Jid Constructor Description OfflineMessageHeader(Jid sender, String id)
-
Uses of Jid in rocks.xmpp.extensions.ping
Methods in rocks.xmpp.extensions.ping with parameters of type Jid Modifier and Type Method Description AsyncResult<Boolean>
PingManager. ping(Jid jid)
Pings the given XMPP entity. -
Uses of Jid in rocks.xmpp.extensions.privacy.model
Methods in rocks.xmpp.extensions.privacy.model with parameters of type Jid Modifier and Type Method Description static PrivacyRule
PrivacyRule. blockAllCommunicationWith(Jid entity, long order)
Creates a rule, which blocks all communication from and to another entity.static PrivacyRule
PrivacyRule. blockIQFrom(Jid entity, long order)
Creates a rule, which blocks all inbound IQ stanzas from another entity.static PrivacyRule
PrivacyRule. blockMessagesFrom(Jid entity, long order)
Creates a rule, which blocks all inbound messages from another entity.static PrivacyRule
PrivacyRule. blockPresenceFrom(Jid entity, long order)
Creates a rule, which blocks all inbound presence notifications from another entity.static PrivacyRule
PrivacyRule. blockPresenceTo(Jid entity, long order)
Creates a rule, which blocks all outbound presence notifications to another entity.static PrivacyList
PrivacyList. createInvisibilityListExceptForUsers(String listName, Jid... jids)
Creates a global invisibility list, where you are still visible to some contacts.static PrivacyList
PrivacyList. createInvisibilityListForUsers(String listName, Jid... jids)
Creates a selective invisibility list.static PrivacyRule
PrivacyRule. of(Jid jid, PrivacyRule.Action action, long order)
Creates a privacy rule of type 'jid'. -
Uses of Jid in rocks.xmpp.extensions.privatedata.rosternotes.model
Methods in rocks.xmpp.extensions.privatedata.rosternotes.model that return Jid Modifier and Type Method Description Jid
Annotation.Note. getJid()
Gets the JID of the contact (roster item).Constructors in rocks.xmpp.extensions.privatedata.rosternotes.model with parameters of type Jid Constructor Description Note(String note, Jid jid)
Creates a roster note.Note(String note, Jid jid, OffsetDateTime creationDate, OffsetDateTime modificationDate)
Creates a roster note. -
Uses of Jid in rocks.xmpp.extensions.pubsub
Methods in rocks.xmpp.extensions.pubsub that return Jid Modifier and Type Method Description Jid
PubSubService. getAddress()
Deprecated.Jid
PubSubService. getJid()
Gets the service address.Methods in rocks.xmpp.extensions.pubsub with parameters of type Jid Modifier and Type Method Description PubSubService
PubSubManager. createPubSubService(Jid service)
Creates a pubsub service.AsyncResult<Subscription>
PubSubNode. subscribe(Jid jid)
Subscribes to this node.AsyncResult<Subscription>
PubSubNode. subscribe(Jid jid, SubscribeOptions subscribeOptions)
Subscribes to and configures this node. -
Uses of Jid in rocks.xmpp.extensions.pubsub.model
Methods in rocks.xmpp.extensions.pubsub.model that return Jid Modifier and Type Method Description Jid
NodeMetaData. getCreator()
Gets the creator.Jid
Subscription. getJid()
Gets the subscriber.Jid
Item. getPublisher()
Gets the publisher.Methods in rocks.xmpp.extensions.pubsub.model that return types with arguments of type Jid Modifier and Type Method Description List<Jid>
NodeConfiguration. getChildrenAssociationWhitelist()
The list of JIDs that may associate leaf nodes with a collection.List<Jid>
NodeConfiguration. getContacts()
The JIDs of those to contact with questions.List<Jid>
NodeMetaData. getContacts()
Gets the contacts.List<Jid>
NodeMetaData. getOwners()
Gets the owners.List<Jid>
NodeMetaData. getPublishers()
Gets the publishers.Methods in rocks.xmpp.extensions.pubsub.model with parameters of type Jid Modifier and Type Method Description NodeMetaData.Builder
NodeMetaData.Builder. creator(Jid creator)
The JID of the node creator.static PubSub
PubSub. withOptions(String node, Jid jid, String subid, DataForm dataForm)
Creates a pubsub element with an<options/>
child element with a 'node' and 'jid' attribute.static PubSub
PubSub. withSubscribe(String node, Jid jid)
Creates a pubsub element with a<subscribe/>
child element with a 'node' and 'jid' attribute.static PubSub
PubSub. withSubscribe(String node, Jid jid, DataForm dataForm)
Creates a pubsub element with a<subscribe/>
and<options/>
child element with a 'node' and 'jid' attribute.static PubSub
PubSub. withUnsubscribe(String node, Jid jid, String subscriptionId)
Creates a pubsub element with an<unsubscribe/>
child element with a 'node' and 'jid' attribute.Method parameters in rocks.xmpp.extensions.pubsub.model with type arguments of type Jid Modifier and Type Method Description NodeConfiguration.Builder
NodeConfiguration.Builder. childrenAssociationWhitelist(Collection<Jid> childrenAssociationWhitelist)
The list of JIDs that may associate leaf nodes with a collection.NodeConfiguration.Builder
NodeConfiguration.Builder. contacts(Collection<Jid> contacts)
The JIDs of those to contact with questionsNodeMetaData.Builder
NodeMetaData.Builder. contacts(Collection<Jid> contacts)
The JIDs of those to contact with questions.NodeMetaData.Builder
NodeMetaData.Builder. owners(Collection<Jid> owners)
The JIDs of those with an affiliation of owner.NodeMetaData.Builder
NodeMetaData.Builder. publishers(Collection<Jid> publishers)
The JIDs of those with an affiliation of publisher. -
Uses of Jid in rocks.xmpp.extensions.pubsub.model.event
Methods in rocks.xmpp.extensions.pubsub.model.event with parameters of type Jid Modifier and Type Method Description static Event
Event. withItem(String node, Object payload, String id, Jid publisher)
Creates a pub-sub event with a single item.static Event
Event. withSubscription(String node, Jid jid, SubscriptionState subscription)
Creates a pub-sub event with subscription information.static Event
Event. withSubscription(String node, Jid jid, SubscriptionState subscription, Instant expiry, String subid)
Creates a pub-sub event with subscription information. -
Uses of Jid in rocks.xmpp.extensions.reach
Methods in rocks.xmpp.extensions.reach that return Jid Modifier and Type Method Description Jid
ReachabilityEvent. getContact()
Gets the contact, who changed reachability.Methods in rocks.xmpp.extensions.reach with parameters of type Jid Modifier and Type Method Description AsyncResult<List<Address>>
ReachabilityManager. requestReachabilityAddresses(Jid contact)
Requests the reachability addresses of a contact. -
Uses of Jid in rocks.xmpp.extensions.receipts
Methods in rocks.xmpp.extensions.receipts that return Jid Modifier and Type Method Description Jid
MessageDeliveredEvent. getFrom()
Gets the sender of the receipt. -
Uses of Jid in rocks.xmpp.extensions.rosterx
Methods in rocks.xmpp.extensions.rosterx that return Jid Modifier and Type Method Description Jid
ContactExchangeEvent. getFrom()
Gets the sender of the roster item exchange.Methods in rocks.xmpp.extensions.rosterx that return types with arguments of type Jid Modifier and Type Method Description Collection<Jid>
ContactExchangeManager. getTrustedEntities()
Gets a unmodifiable collection of trusted entities for which roster item exchange suggestions are approved automatically (no listeners will be called).Methods in rocks.xmpp.extensions.rosterx with parameters of type Jid Modifier and Type Method Description boolean
ContactExchangeManager. addTrustedEntity(Jid jid)
Adds a trusted entity for which roster item exchange suggestions are approved automatically (no listeners will be called).boolean
ContactExchangeManager. removeTrustedEntity(Jid jid)
Removes a trusted entity for which roster item exchange suggestions are approved automatically.AsyncResult<Void>
ContactExchangeManager. suggestContactAddition(Jid jid, Contact... contacts)
Suggests the addition of one or more contacts to another user. -
Uses of Jid in rocks.xmpp.extensions.rosterx.model
Methods in rocks.xmpp.extensions.rosterx.model that return Jid Modifier and Type Method Description Jid
ContactExchange.Item. getJid()
Gets the JID.Constructors in rocks.xmpp.extensions.rosterx.model with parameters of type Jid Constructor Description Item(Jid jid, String name, Collection<String> groups, ContactExchange.Item.Action action)
-
Uses of Jid in rocks.xmpp.extensions.rpc
Methods in rocks.xmpp.extensions.rpc with parameters of type Jid Modifier and Type Method Description AsyncResult<Value>
RpcManager. call(Jid jid, String methodName, Value... parameters)
Calls a remote procedure.Value
RpcHandler. process(Jid requester, String methodName, List<Value> parameters)
Processes the remote procedure call. -
Uses of Jid in rocks.xmpp.extensions.rpc.client
Methods in rocks.xmpp.extensions.rpc.client with parameters of type Jid Modifier and Type Method Description AsyncResult<Value>
ClientRpcManager. call(Jid jid, String methodName, Value... parameters)
-
Uses of Jid in rocks.xmpp.extensions.rtt
Methods in rocks.xmpp.extensions.rtt that return Jid Modifier and Type Method Description Jid
InboundRealTimeMessage. getFrom()
Gets the sender of the real-time message.Jid
RealTimeTextActivationEvent. getSender()
Gets the sender of the real-time text. -
Uses of Jid in rocks.xmpp.extensions.search
Methods in rocks.xmpp.extensions.search with parameters of type Jid Modifier and Type Method Description AsyncResult<Search>
SearchManager. discoverSearchFields(Jid service)
Discovers the supported search fields of a service.AsyncResult<Search>
SearchManager. search(Search search, Jid service)
Performs a search on the given service with given search parameters. -
Uses of Jid in rocks.xmpp.extensions.search.model
Methods in rocks.xmpp.extensions.search.model that return Jid Modifier and Type Method Description Jid
Search.Item. getJid()
Gets the JID.Constructors in rocks.xmpp.extensions.search.model with parameters of type Jid Constructor Description Item(Jid jid, String first, String last, String nick, String email)
-
Uses of Jid in rocks.xmpp.extensions.seclabel.model.catalog
Methods in rocks.xmpp.extensions.seclabel.model.catalog that return Jid Modifier and Type Method Description Jid
Catalog. getFrom()
Gets the 'from' attribute.Jid
Catalog. getTo()
Gets the 'to' attribute.Constructors in rocks.xmpp.extensions.seclabel.model.catalog with parameters of type Jid Constructor Description Catalog(Jid to, Jid from, String name, String description, String id, Integer size, Boolean restrict, Collection<Catalog.Item> items)
-
Uses of Jid in rocks.xmpp.extensions.shim
Methods in rocks.xmpp.extensions.shim with parameters of type Jid Modifier and Type Method Description AsyncResult<List<String>>
HeaderManager. discoverSupportedHeaders(Jid jid)
Discovers the supported headers of another entity.AsyncResult<List<String>>
StanzaHeadersAndInternetMetadataProtocol. discoverSupportedHeaders(Jid jid)
DiscoverableInfo
StanzaHeadersAndInternetMetadataProtocol. getInfo(Jid to, Jid from, String node, Locale locale)
-
Uses of Jid in rocks.xmpp.extensions.si
Methods in rocks.xmpp.extensions.si with parameters of type Jid Modifier and Type Method Description AsyncResult<ByteStreamSession>
StreamInitiationManager. initiateStream(Jid receiver, SIFileTransferOffer profile, String mimeType, Duration timeout)
Initiates a stream with another entity.AsyncResult<ByteStreamSession>
StreamInitiationManager. initiateStream(Jid receiver, SIFileTransferOffer profile, String mimeType, Duration timeout, String sessionId)
Initiates a stream with another entity. -
Uses of Jid in rocks.xmpp.extensions.time
Methods in rocks.xmpp.extensions.time with parameters of type Jid Modifier and Type Method Description AsyncResult<OffsetDateTime>
EntityTimeManager. getEntityTime(Jid jid)
Gets the time information (e.g. time zone) of another XMPP entity. -
Uses of Jid in rocks.xmpp.extensions.vcard.avatar
Methods in rocks.xmpp.extensions.vcard.avatar with parameters of type Jid Modifier and Type Method Description AsyncResult<byte[]>
VCardBasedAvatarsProtocol. getAvatar(Jid contact)
-
Uses of Jid in rocks.xmpp.extensions.vcard.temp
Methods in rocks.xmpp.extensions.vcard.temp with parameters of type Jid Modifier and Type Method Description AsyncResult<VCard>
VCardManager. getVCard(Jid jid)
Gets the vCard of another user. -
Uses of Jid in rocks.xmpp.extensions.vcard.temp.model
Methods in rocks.xmpp.extensions.vcard.temp.model that return Jid Modifier and Type Method Description Jid
VCard. getJid()
Gets the JID.Methods in rocks.xmpp.extensions.vcard.temp.model with parameters of type Jid Modifier and Type Method Description void
VCard. setJid(Jid jid)
Sets the JID. -
Uses of Jid in rocks.xmpp.extensions.version
Methods in rocks.xmpp.extensions.version with parameters of type Jid Modifier and Type Method Description AsyncResult<SoftwareVersion>
SoftwareVersionManager. getSoftwareVersion(Jid jid)
Queries another entity for its software version. -
Uses of Jid in rocks.xmpp.extensions.version.client
Methods in rocks.xmpp.extensions.version.client with parameters of type Jid Modifier and Type Method Description AsyncResult<SoftwareVersion>
ClientSoftwareVersionManager. getSoftwareVersion(Jid jid)
Gets the software version of another entity. -
Uses of Jid in rocks.xmpp.im.chat
Methods in rocks.xmpp.im.chat that return Jid Modifier and Type Method Description Jid
ChatSession. getChatPartner()
Gets the chat partner of this chat session.Jid
ChatSession.ChatPartnerEvent. getNewChatPartner()
Gets the JID of the new chat partner.Jid
ChatSession.ChatPartnerEvent. getOldChatPartner()
Gets the JID of the old chat partner.Methods in rocks.xmpp.im.chat with parameters of type Jid Modifier and Type Method Description ChatSession
ChatManager. createChatSession(Jid chatPartner)
Creates a new chat session or returns an existing one for the given chat partner and notifies any chat session listeners about it.ChatSession
ChatManager. createChatSession(Jid chatPartner, String threadId)
Creates a new chat session with a given thread id or returns an existing one for the given chat partner and notifies any chat session listeners about it. -
Uses of Jid in rocks.xmpp.im.roster
Methods in rocks.xmpp.im.roster with parameters of type Jid Modifier and Type Method Description Contact
RosterManager. getContact(Jid jid)
Gets a contact by its JID.AsyncResult<Void>
RosterManager. removeContact(Jid jid)
Removes a contact from the roster. -
Uses of Jid in rocks.xmpp.im.roster.model
Methods in rocks.xmpp.im.roster.model that return Jid Modifier and Type Method Description Jid
Contact. getJid()
Gets the JID of the contact.Methods in rocks.xmpp.im.roster.model with parameters of type Jid Modifier and Type Method Description static Contact
Contact. removeContact(Jid jid)
Creates a new contact to send to the server for removal.Constructors in rocks.xmpp.im.roster.model with parameters of type Jid Constructor Description Contact(Jid jid)
Creates a new contact associated with the given JID.Contact(Jid jid, String name)
Creates a new contact associated with the given JID and name.Contact(Jid jid, String name, Boolean isPending, Boolean approved, SubscriptionState.Subscription subscription, Collection<String> groups)
Creates a new contact associated with the given JID, name and groups.Contact(Jid jid, String name, String... groups)
Creates a new contact associated with the given JID, name and groups.Contact(Jid jid, String name, Collection<String> groups)
Creates a new contact associated with the given JID, name and groups. -
Uses of Jid in rocks.xmpp.im.subscription
Methods in rocks.xmpp.im.subscription with parameters of type Jid Modifier and Type Method Description String
PresenceManager. approveSubscription(Jid jid)
Approves a subscription request.String
PresenceManager. denySubscription(Jid jid)
Cancels a previously granted subscription or denies a subscription request.Presence
PresenceManager. getPresence(Jid jid)
Gets the presence for a given contact.String
PresenceManager. requestSubscription(Jid jid, String status)
Sends a subscription request to a potential contact.String
PresenceManager. unsubscribe(Jid jid)
Unsubscribes from a contact's presence. -
Uses of Jid in rocks.xmpp.websocket.model
Constructors in rocks.xmpp.websocket.model with parameters of type Jid Constructor Description Close(Jid to, Jid from, String id, Locale language, String version, URI uri)
Creates an<close/>
element with a 'to', 'from', 'id', 'lang' and 'see-other-uri' attribute.Open(Jid to, Locale language)
Creates an<open/>
element with a 'to' and 'lang' attribute.Open(Jid to, Jid from, String id, Locale language)
Creates an<open/>
element with a 'to', 'from', 'id' and 'lang' attribute.Open(Jid to, Jid from, String id, Locale language, String version)
Creates an<open/>
element with a 'to', 'from', 'id' and 'lang' attribute.
-