Uses of Class
rocks.xmpp.core.stanza.model.Stanza
-
Packages that use Stanza Package Description rocks.xmpp.core.session Provides classes related to an XMPP session.rocks.xmpp.core.stanza.model Provides XML Stanzas and Stanza Errors.rocks.xmpp.core.stanza.model.client rocks.xmpp.core.stanza.model.server rocks.xmpp.extensions.component.accept.model Provides XML schema implementations of XEP-0050: Ad-Hoc Commands.rocks.xmpp.extensions.delay.model Provides XML schema implementations of XEP-0203: Delayed Delivery.rocks.xmpp.extensions.forward.model Provides XML schema implementations of XEP-0297: Stanza Forwarding.rocks.xmpp.extensions.sm Provides classes for XEP-0198: Stream Management. -
-
Uses of Stanza in rocks.xmpp.core.session
Classes in rocks.xmpp.core.session with type parameters of type Stanza Modifier and Type Class Description class
SendTask<S extends Stanza>
A send task is the result of a send action and allows to keep track of the sent stanza.Methods in rocks.xmpp.core.session that return types with arguments of type Stanza Modifier and Type Method Description Queue<Stanza>
XmppSession. getUnacknowledgedStanzas()
Methods in rocks.xmpp.core.session with parameters of type Stanza Modifier and Type Method Description void
XmppSession. markAcknowledged(Stanza acknowledgedStanza)
Marks a stanza as acknowledged. -
Uses of Stanza in rocks.xmpp.core.stanza.model
Subclasses of Stanza in rocks.xmpp.core.stanza.model Modifier and Type Class Description class
ExtensibleStanza
A stanza which is extensible (can have more than one extension), i.e.class
IQ
The implementation of the<iq/>
stanza.class
Message
The implementation of the<message/>
element.class
Presence
The implementation of the<presence/>
element.Methods in rocks.xmpp.core.stanza.model that return Stanza Modifier and Type Method Description abstract Stanza
Stanza. createError(Condition condition)
Creates an error response for this stanza.abstract Stanza
Stanza. createError(StanzaError error)
Creates an error response for this stanza.Stanza
StanzaErrorException. getStanza()
Gets the stanza, which includes the error.Methods in rocks.xmpp.core.stanza.model with parameters of type Stanza Modifier and Type Method Description static boolean
Stanza. isToItselfOrServer(Stanza stanza, CharSequence domain, Jid connectedResource)
Checks if a stanza is addressed either to itself or to the server.Constructors in rocks.xmpp.core.stanza.model with parameters of type Stanza Constructor Description StanzaErrorException(Stanza stanza)
Constructs a stanza exception. -
Uses of Stanza in rocks.xmpp.core.stanza.model.client
Subclasses of Stanza in rocks.xmpp.core.stanza.model.client Modifier and Type Class Description class
ClientIQ
The implementation of the<iq/>
element in thejabber:client
namespace.class
ClientMessage
The implementation of the<message/>
element in thejabber:client
namespace.class
ClientPresence
The implementation of the<presence/>
element in thejabber:client
namespace. -
Uses of Stanza in rocks.xmpp.core.stanza.model.server
Subclasses of Stanza in rocks.xmpp.core.stanza.model.server Modifier and Type Class Description class
ServerIQ
The implementation of the<iq/>
element in thejabber:server
namespace.class
ServerMessage
The implementation of the<message/>
element in thejabber:server
namespace.class
ServerPresence
The implementation of the<presence/>
element in thejabber:server
namespace. -
Uses of Stanza in rocks.xmpp.extensions.component.accept.model
Subclasses of Stanza in rocks.xmpp.extensions.component.accept.model Modifier and Type Class Description class
ComponentIQ
The implementation of the<iq/>
element in thejabber:component:accept
namespace.class
ComponentMessage
The implementation of the<message/>
element in thejabber:component:accept
namespace.class
ComponentPresence
The implementation of the<presence/>
element in thejabber:component:accept
namespace. -
Uses of Stanza in rocks.xmpp.extensions.delay.model
Methods in rocks.xmpp.extensions.delay.model with parameters of type Stanza Modifier and Type Method Description static Instant
DelayedDelivery. sendDate(Stanza stanza)
Gets the original send date of a stanza, i.e. -
Uses of Stanza in rocks.xmpp.extensions.forward.model
Methods in rocks.xmpp.extensions.forward.model that return Stanza Modifier and Type Method Description Stanza
Forwarded. getStanza()
Gets the forwarded stanza.Constructors in rocks.xmpp.extensions.forward.model with parameters of type Stanza Constructor Description Forwarded(Stanza stanza)
Creates a forwarded element.Forwarded(Stanza stanza, DelayedDelivery delayedDelivery)
Creates a forwarded element. -
Uses of Stanza in rocks.xmpp.extensions.sm
Methods in rocks.xmpp.extensions.sm that return types with arguments of type Stanza Modifier and Type Method Description static Predicate<Stanza>
RequestStrategies. forEachMessage()
Requests an ack for each message.static Predicate<Stanza>
RequestStrategies. forEachMessageOrEveryXStanzas(int x)
Requests an acknowledgement for each message and at the latest after X non-message stanzas (presence or IQ).static Predicate<Stanza>
RequestStrategies. forEveryXStanzas(int x)
Requests an ack for every X stanzas.Predicate<Stanza>
AbstractStreamManager. getRequestStrategy()
Gets the request strategy.Methods in rocks.xmpp.extensions.sm with parameters of type Stanza Modifier and Type Method Description void
AbstractStreamManager. markUnacknowledged(Stanza stanza)
Marks a stanza as unacknowledged.Method parameters in rocks.xmpp.extensions.sm with type arguments of type Stanza Modifier and Type Method Description void
AbstractStreamManager. setRequestStrategy(Predicate<Stanza> requestStrategy)
Sets the request strategy.
-