Uses of Class
rocks.xmpp.core.XmppException
-
-
Uses of XmppException in rocks.xmpp.core.sasl
Subclasses of XmppException in rocks.xmpp.core.sasl Modifier and Type Class Description class
AuthenticationException
An exception thrown during the login process, if SASL negotiation with the XMPP server fails. -
Uses of XmppException in rocks.xmpp.core.session
Subclasses of XmppException in rocks.xmpp.core.session Modifier and Type Class Description class
ConnectionException
Indicates a failure while connecting to the server.class
NoResponseException
This exception is thrown, when no response has been received from an XMPP entity.Methods in rocks.xmpp.core.session that throw XmppException Modifier and Type Method Description void
XmppSession. close()
Explicitly closes the session and performs a clean up of all listeners.void
XmppClient. connect(Jid from)
Connects to the XMPP server.void
XmppSession. connect()
Connects to the XMPP server.abstract void
XmppSession. connect(Jid from)
boolean
XmppSession. handleElement(Object element)
Handles an XMPP element.byte[]
XmppClient. login(String user, String password)
Authenticates against the server and binds a random resource (assigned by the server).byte[]
XmppClient. login(String user, String password, String resource)
Authenticates against the server with username/password credential and binds a resource.byte[]
XmppClient. login(String authorizationId, String user, String password, String resource)
Authenticates against the server with an authorization id and username/password credential and binds a resource.byte[]
XmppClient. login(String authorizationId, CallbackHandler callbackHandler, String resource)
Authenticates against the server with a custom callback handler and binds a resource.byte[]
XmppClient. loginAnonymously()
Logs in anonymously and binds a resource. -
Uses of XmppException in rocks.xmpp.core.stanza.model
Subclasses of XmppException in rocks.xmpp.core.stanza.model Modifier and Type Class Description class
StanzaErrorException
A stanza exception represents a stanza error. -
Uses of XmppException in rocks.xmpp.core.stream
Subclasses of XmppException in rocks.xmpp.core.stream Modifier and Type Class Description class
StreamNegotiationException
An exception which indicates a failure during stream negotiation, e.g. if TLS or SASL negotiation or compression or resource binding fails.Methods in rocks.xmpp.core.stream that throw XmppException Modifier and Type Method Description boolean
StreamHandler. handleElement(Object streamElement)
Handles an inbound stream element. -
Uses of XmppException in rocks.xmpp.core.stream.model
Subclasses of XmppException in rocks.xmpp.core.stream.model Modifier and Type Class Description class
StreamErrorException
Represents a stream error. -
Uses of XmppException in rocks.xmpp.extensions.avatar
Methods in rocks.xmpp.extensions.avatar that throw XmppException Modifier and Type Method Description AsyncResult<Void>
AbstractAvatarManager. publishAvatarImage(BufferedImage bufferedImage)
AsyncResult<Void>
AvatarManager. publishAvatarImage(BufferedImage bufferedImage)
Publishes an avatar. -
Uses of XmppException in rocks.xmpp.extensions.component.accept
Methods in rocks.xmpp.extensions.component.accept that throw XmppException Modifier and Type Method Description void
ExternalComponent. connect(Jid from)
boolean
ExternalComponent. handleElement(Object element)
-
Uses of XmppException in rocks.xmpp.extensions.filetransfer
Subclasses of XmppException in rocks.xmpp.extensions.filetransfer Modifier and Type Class Description class
FileTransferRejectedException
This is generic exception when a file transfer request has been rejected. -
Uses of XmppException in rocks.xmpp.extensions.httpbind
Subclasses of XmppException in rocks.xmpp.extensions.httpbind Modifier and Type Class Description class
BoshException
A BOSH exception is thrown when the BOSH connection manager returned an error condition or the HTTP request responded with an HTTP error code. -
Uses of XmppException in rocks.xmpp.extensions.jingle.apps.filetransfer
Methods in rocks.xmpp.extensions.jingle.apps.filetransfer that throw XmppException Modifier and Type Method Description JingleFileTransferSession
JingleFileTransferManager. initiateFileTransferSession(Jid responder, Path file, String description, long timeout)
-
Uses of XmppException in rocks.xmpp.util.concurrent
Methods in rocks.xmpp.util.concurrent that throw XmppException Modifier and Type Method Description T
AsyncResult. getResult()
Waits uninterruptibly on the result of the query and returns it.T
AsyncResult. getResult(long timeout, TimeUnit unit)
Waits uninterruptibly on the result of the query (with a timeout) and returns it.
-