Uses of Interface
org.jivesoftware.openfire.session.ClientSession
-
Packages that use ClientSession Package Description org.jivesoftware.openfire org.jivesoftware.openfire.http Provides classes for XEP-0124: Bidirectional-streams Over Synchronous HTTP (BOSH).org.jivesoftware.openfire.net org.jivesoftware.openfire.pep Implementation of Personal Eventing via Pubsub (XEP-0163).org.jivesoftware.openfire.session org.jivesoftware.openfire.spi org.jivesoftware.openfire.user Provides the interfaces and classes necessary to create custom user account data providers for Openfire. -
-
Uses of ClientSession in org.jivesoftware.openfire
Methods in org.jivesoftware.openfire that return ClientSession Modifier and Type Method Description ClientSessionRoutingTable. getClientRoute(org.xmpp.packet.JID jid)Returns the client session associated to the specified XMPP address ornullif none was found.ClientSessionSessionManager. getSession(org.xmpp.packet.JID from)Returns the session responsible for this JID data.Methods in org.jivesoftware.openfire that return types with arguments of type ClientSession Modifier and Type Method Description Collection<ClientSession>RoutingTable. getClientsRoutes(boolean onlyLocal)Returns collection of client sessions authenticated with the server.Collection<ClientSession>SessionManager. getSessions()Returns a list that contains all authenticated client sessions connected to the server.Collection<ClientSession>SessionManager. getSessions(String username)Collection<ClientSession>SessionManager. getSessions(SessionResultFilter filter)Comparator<ClientSession>SessionResultFilter. getSortComparator()Returns a comparator that will sort a standard sorted set according to this filter's sort order.Methods in org.jivesoftware.openfire with parameters of type ClientSession Modifier and Type Method Description booleanSessionManager. removeSession(ClientSession session, org.xmpp.packet.JID fullJID, boolean anonymous, boolean forceUnavailable)Removes a session. -
Uses of ClientSession in org.jivesoftware.openfire.http
Classes in org.jivesoftware.openfire.http that implement ClientSession Modifier and Type Class Description classHttpSessionA session represents a series of interactions with an XMPP client sending packets using the HTTP Binding protocol specified in XEP-0124. -
Uses of ClientSession in org.jivesoftware.openfire.net
Methods in org.jivesoftware.openfire.net with parameters of type ClientSession Modifier and Type Method Description static org.dom4j.ElementSASLAuthentication. getSASLMechanismsElement(ClientSession session) -
Uses of ClientSession in org.jivesoftware.openfire.pep
Methods in org.jivesoftware.openfire.pep with parameters of type ClientSession Modifier and Type Method Description voidIQPEPHandler. availableSession(ClientSession session, org.xmpp.packet.Presence presence)voidIQPEPHandler. presenceChanged(ClientSession session, org.xmpp.packet.Presence presence)voidIQPEPHandler. unavailableSession(ClientSession session, org.xmpp.packet.Presence presence)The following functions are unimplemented required interface methods. -
Uses of ClientSession in org.jivesoftware.openfire.session
Classes in org.jivesoftware.openfire.session that implement ClientSession Modifier and Type Class Description classLocalClientSessionRepresents a session between the server and a client.Methods in org.jivesoftware.openfire.session that return ClientSession Modifier and Type Method Description ClientSessionRemoteSessionLocator. getClientSession(byte[] nodeID, org.xmpp.packet.JID address)Returns a session surrogate of a client session hosted by a remote cluster node. -
Uses of ClientSession in org.jivesoftware.openfire.spi
Methods in org.jivesoftware.openfire.spi that return ClientSession Modifier and Type Method Description ClientSessionRoutingTableImpl. getClientRoute(org.xmpp.packet.JID jid)Methods in org.jivesoftware.openfire.spi that return types with arguments of type ClientSession Modifier and Type Method Description Collection<ClientSession>RoutingTableImpl. getClientsRoutes(boolean onlyLocal) -
Uses of ClientSession in org.jivesoftware.openfire.user
Methods in org.jivesoftware.openfire.user with parameters of type ClientSession Modifier and Type Method Description static voidPresenceEventDispatcher. availableSession(ClientSession session, org.xmpp.packet.Presence presence)Notification message indicating that a session that was not available is now available.voidPresenceEventListener. availableSession(ClientSession session, org.xmpp.packet.Presence presence)Notification message indicating that a session that was not available is now available.static voidPresenceEventDispatcher. presenceChanged(ClientSession session, org.xmpp.packet.Presence presence)Notification message indicating that an available session has changed its presence.voidPresenceEventListener. presenceChanged(ClientSession session, org.xmpp.packet.Presence presence)Notification message indicating that an available session has changed its presence.static voidPresenceEventDispatcher. unavailableSession(ClientSession session, org.xmpp.packet.Presence presence)Notification message indicating that a session that was available is no longer available.voidPresenceEventListener. unavailableSession(ClientSession session, org.xmpp.packet.Presence presence)Notification message indicating that a session that was available is no longer available.
-