Uses of Interface
org.jivesoftware.openfire.Connection
-
Packages that use Connection Package Description org.jivesoftware.openfire org.jivesoftware.openfire.http Provides classes for XEP-0124: Bidirectional-streams Over Synchronous HTTP (BOSH).org.jivesoftware.openfire.multiplex Connection Manager implementation.org.jivesoftware.openfire.net org.jivesoftware.openfire.nio org.jivesoftware.openfire.server Classes used for server-to-server communication.org.jivesoftware.openfire.session org.jivesoftware.openfire.websocket -
-
Uses of Connection in org.jivesoftware.openfire
Methods in org.jivesoftware.openfire with parameters of type Connection Modifier and Type Method Description LocalClientSessionSessionManager. createClientSession(Connection conn, Locale language)Creates a newClientSession.LocalClientSessionSessionManager. createClientSession(Connection conn, StreamID id)Creates a newClientSessionwith the specified streamID.LocalClientSessionSessionManager. createClientSession(Connection conn, StreamID id, Locale language)Creates a newClientSessionwith the specified streamID.LocalComponentSessionSessionManager. createComponentSession(org.xmpp.packet.JID address, Connection conn)LocalIncomingServerSessionSessionManager. createIncomingServerSession(Connection conn, StreamID id, String fromDomain)Creates a session for a remote server.LocalConnectionMultiplexerSessionSessionManager. createMultiplexerSession(Connection conn, org.xmpp.packet.JID address)Creates a newConnectionMultiplexerSession. -
Uses of Connection in org.jivesoftware.openfire.http
Classes in org.jivesoftware.openfire.http that implement Connection Modifier and Type Class Description static classHttpSession.HttpVirtualConnectionA virtual server connection relates to a http session which its self can relate to many http connections. -
Uses of Connection in org.jivesoftware.openfire.multiplex
Classes in org.jivesoftware.openfire.multiplex that implement Connection Modifier and Type Class Description classClientSessionConnectionRepresents a connection of a Client Session that was established to a Connection Manager. -
Uses of Connection in org.jivesoftware.openfire.net
Classes in org.jivesoftware.openfire.net that implement Connection Modifier and Type Class Description classSocketConnectionDeprecated.Old, pre NIO / MINA code.classVirtualConnectionAbstract implementation of the Connection interface that models abstract connections.Fields in org.jivesoftware.openfire.net declared as Connection Modifier and Type Field Description protected ConnectionStanzaHandler. connectionConstructors in org.jivesoftware.openfire.net with parameters of type Connection Constructor Description ClientStanzaHandler(PacketRouter router, String serverName, Connection connection)Deprecated.ClientStanzaHandler(PacketRouter router, Connection connection)ComponentStanzaHandler(PacketRouter router, String serverName, Connection connection)Deprecated.ComponentStanzaHandler(PacketRouter router, Connection connection)MultiplexerStanzaHandler(PacketRouter router, String serverName, Connection connection)Deprecated.MultiplexerStanzaHandler(PacketRouter router, Connection connection)ServerStanzaHandler(PacketRouter router, String serverName, Connection connection)Deprecated.ServerStanzaHandler(PacketRouter router, Connection connection)ServerTrustManager(String server, KeyStore trustStore, Connection connection)Deprecated.Use ServerTrustManager(KeyStore trustStore) instead (there's no functional difference).StanzaHandler(PacketRouter router, String serverName, Connection connection)Deprecated.StanzaHandler(PacketRouter router, Connection connection)Creates a dedicated reader for a socket.TLSStreamHandler(Connection connection, Socket socket, boolean clientMode, String remoteServer, boolean needClientAuth)Deprecated.Use the other constructor.TLSWrapper(Connection connection, boolean clientMode, boolean needClientAuth, String remoteServer)Deprecated.Use the other constructor. -
Uses of Connection in org.jivesoftware.openfire.nio
Classes in org.jivesoftware.openfire.nio that implement Connection Modifier and Type Class Description classNIOConnectionImplementation ofConnectioninterface specific for NIO connections when using the Apache MINA framework. -
Uses of Connection in org.jivesoftware.openfire.server
Methods in org.jivesoftware.openfire.server with parameters of type Connection Modifier and Type Method Description static booleanServerDialback. verifyReceivedKey(org.dom4j.Element doc, Connection connection)Verifies the key sent by a Receiving Server.Constructors in org.jivesoftware.openfire.server with parameters of type Connection Constructor Description ServerDialback(Connection connection, String serverName)Creates a new instance that will be used for creatingIncomingServerSession, validating subsequent domains or authenticatig new domains. -
Uses of Connection in org.jivesoftware.openfire.session
Fields in org.jivesoftware.openfire.session declared as Connection Modifier and Type Field Description protected ConnectionLocalSession. connThe connection that this session represents.Methods in org.jivesoftware.openfire.session that return Connection Modifier and Type Method Description ConnectionLocalSession. getConnection()Returns the connection associated with this Session.Methods in org.jivesoftware.openfire.session with parameters of type Connection Modifier and Type Method Description static LocalClientSessionLocalClientSession. createSession(String serverName, org.xmlpull.v1.XmlPullParser xpp, Connection connection)Returns a newly created session between the server and a client.static LocalComponentSessionLocalComponentSession. createSession(String serverName, org.xmlpull.v1.XmlPullParser xpp, Connection connection)Returns a newly created session between the server and a component.static LocalConnectionMultiplexerSessionLocalConnectionMultiplexerSession. createSession(String serverName, org.xmlpull.v1.XmlPullParser xpp, Connection connection)static booleanLocalClientSession. isAllowed(Connection connection)static booleanLocalClientSession. isAllowedAnonymous(Connection connection)Constructors in org.jivesoftware.openfire.session with parameters of type Connection Constructor Description LocalClientSession(String serverName, Connection connection, StreamID streamID, Locale language)Creates a session with an underlying connection and permission protection.LocalComponentSession(String serverName, Connection conn, StreamID id)LocalConnectionMultiplexerSession(String serverName, Connection connection, StreamID streamID)LocalExternalComponent(LocalComponentSession session, Connection connection)LocalIncomingServerSession(String serverName, Connection connection, StreamID streamID, String fromDomain)LocalOutgoingServerSession(String localDomain, Connection connection, OutgoingServerSocketReader socketReader, StreamID streamID)LocalServerSession(String serverName, Connection connection, StreamID streamID)LocalSession(String serverName, Connection connection, StreamID streamID, Locale language)Creates a session with an underlying connection and permission protection. -
Uses of Connection in org.jivesoftware.openfire.websocket
Classes in org.jivesoftware.openfire.websocket that implement Connection Modifier and Type Class Description classWebSocketConnectionFollowing the conventions of the BOSH implementation, this class extendsVirtualConnectionand delegates the expected XMPP connection behaviors to the correspondingXmppWebSocket.
-