Uses of Class
org.androidpn.server.xmpp.session.ClientSession

Packages that use ClientSession
org.androidpn.server.xmpp.session Classes for managing the client sessions. 
 

Uses of ClientSession in org.androidpn.server.xmpp.session
 

Methods in org.androidpn.server.xmpp.session that return ClientSession
 ClientSession SessionManager.createClientSession(Connection conn)
          Creates a new ClientSession and returns it.
static ClientSession ClientSession.createSession(java.lang.String serverName, Connection connection, org.xmlpull.v1.XmlPullParser xpp)
          Creates a new session between the server and a client, and returns it.
 ClientSession SessionManager.getSession(org.xmpp.packet.JID from)
          Returns the session associated with the JID.
 ClientSession SessionManager.getSession(java.lang.String username)
          Returns the session associated with the username.
 

Methods in org.androidpn.server.xmpp.session that return types with arguments of type ClientSession
 java.util.Collection<ClientSession> SessionManager.getSessions()
          Returns a list that contains all authenticated client sessions.
 

Methods in org.androidpn.server.xmpp.session with parameters of type ClientSession
 void SessionManager.addSession(ClientSession session)
          Adds a new session that has been authenticated.
 boolean SessionManager.removeSession(ClientSession session)
          Removes a client session.