|
Wildfire 3.2.4 Javadoc | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jivesoftware.wildfire.container.BasicModule
org.jivesoftware.wildfire.SessionManager
public class SessionManager
Manages the sessions associated with an account. The information maintained by the Session manager is entirely transient and does not need to be preserved between server restarts.
Field Summary | |
---|---|
static int |
NEVER_KICK
|
Constructor Summary | |
---|---|
SessionManager()
|
Method Summary | |
---|---|
void |
addAnonymousSession(ClientSession session)
|
void |
addSession(ClientSession session)
Add a new session to be managed. |
void |
broadcast(Packet packet)
Broadcasts the given data to all connected sessions. |
void |
broadcastPresenceToOtherResources(JID originatingResource,
Presence presence)
Broadcasts presence updates from the originating user's resource to any of the user's existing available resources (if any). |
void |
changePriority(JID sender,
int priority)
Change the priority of a session, that was already available, associated with the sender. |
HttpSession |
createClientHttpSession(long rid,
InetAddress address,
StreamID id)
|
ClientSession |
createClientSession(Connection conn)
Creates a new ClientSession. |
ClientSession |
createClientSession(Connection conn,
StreamID id)
Creates a new ClientSession with the specified streamID. |
Session |
createComponentSession(Connection conn)
|
IncomingServerSession |
createIncomingServerSession(Connection conn,
StreamID id)
Creates a session for a remote server. |
ConnectionMultiplexerSession |
createMultiplexerSession(Connection conn,
JID address)
Creates a new ConnectionMultiplexerSession. |
int |
getActiveSessionCount()
Returns number of client sessions that are available. |
int |
getActiveSessionCount(String username)
Returns the number of sessions for a user that are available. |
int |
getAnonymousSessionCount()
|
Iterator |
getAnonymousSessions()
|
ClientSession |
getBestRoute(JID recipient)
Retrieve the best route to deliver packets to this session given the recipient jid. |
ComponentSession |
getComponentSession(String domain)
Returns the session of the component whose domain matches the specified domain. |
Collection<ComponentSession> |
getComponentSessions()
Returns a collection with the established sessions from external components. |
int |
getConflictKickLimit()
|
InetAddress |
getConnectionMultiplexerInetAddress(String domain)
Returns the IP address of the connection manager whose domain matches the specified domain. |
ConnectionMultiplexerSession |
getConnectionMultiplexerSession(JID address)
Returns the session originated from the specified address. |
List<ConnectionMultiplexerSession> |
getConnectionMultiplexerSessions()
Returns all sessions originated from connection managers. |
List<ConnectionMultiplexerSession> |
getConnectionMultiplexerSessions(String domain)
Returns a collection with all the sessions originated from the connection manager whose domain matches the specified domain. |
Collection<String> |
getIncomingServers()
Returns a collection with the hostnames of the remote servers that currently have an incoming server connection to this server. |
List<IncomingServerSession> |
getIncomingServerSessions(String hostname)
Returns the list of sessions that were originated by a remote server. |
static SessionManager |
getInstance()
Returns the instance of SessionManagerImpl being used by the XMPPServer. |
Collection<String> |
getOutgoingServers()
Returns a collection with the hostnames of the remote servers that currently may receive packets sent from this server. |
OutgoingServerSession |
getOutgoingServerSession(String hostname)
Returns a session that was originated from this server to a remote server. |
Collection<String> |
getPreAuthenticatedKeys()
Returns the temporary keys used by the sessions that has not been authenticated yet. |
int |
getServerSessionIdleTime()
|
int |
getServerSessionTimeout()
Returns the number of milliseconds to elapse between clearing of idle server sessions. |
ClientSession |
getSession(JID from)
Returns the session responsible for this JID. |
ClientSession |
getSession(String username,
String domain,
String resource)
Returns the session responsible for this JID data. |
int |
getSessionCount()
Returns number of client sessions that are connected to the server. |
int |
getSessionCount(String username)
|
Collection<ClientSession> |
getSessions()
Returns a list that contains all client sessions connected to the server. |
Collection<ClientSession> |
getSessions(SessionResultFilter filter)
|
Collection<ClientSession> |
getSessions(String username)
|
Collection<String> |
getSessionUsers()
|
void |
initialize(XMPPServer server)
Initializes the basic module. |
boolean |
isActiveRoute(String username,
String resource)
|
boolean |
isAnonymousRoute(String username)
|
boolean |
isMultipleServerConnectionsAllowed()
Returns true if remote servers are allowed to have more than one connection to this server. |
StreamID |
nextStreamID()
Returns a randomly created ID to be used in a stream element. |
void |
outgoingServerSessionCreated(OutgoingServerSession session)
Notification message that a new OutgoingServerSession has been created. |
void |
registerIncomingServerSession(String hostname,
IncomingServerSession session)
Registers that a server session originated by a remote server is hosting a given hostname. |
void |
registerOutgoingServerSession(String hostname,
OutgoingServerSession session)
Registers that a server session originated by this server has been established to a remote server named hostname. |
boolean |
removeSession(ClientSession session)
Removes a session. |
void |
sendServerMessage(JID address,
String subject,
String body)
Sends a message with a given subject and body to one or more user sessions related to the specified address. |
void |
sendServerMessage(String subject,
String body)
Sends a message with a given subject and body to all the active user sessions in the server. |
void |
sessionAvailable(ClientSession session)
Notification message sent when a client sent an available presence for the session. |
void |
sessionUnavailable(ClientSession session)
Notification message sent when a client sent an unavailable presence for the session. |
void |
setConflictKickLimit(int limit)
|
void |
setMultipleServerConnectionsAllowed(boolean allowed)
Sets if remote servers are allowed to have more than one connection to this server. |
void |
setServerSessionIdleTime(int idleTime)
|
void |
setServerSessionTimeout(int timeout)
Sets the number of milliseconds to elapse between clearing of idle server sessions. |
void |
stop()
Stops the basic module. |
void |
unregisterIncomingServerSessions(String hostname)
Unregisters the server sessions originated by a remote server with the specified hostname. |
void |
unregisterOutgoingServerSession(String hostname)
Unregisters the server session that was originated by this server to a remote server named hostname. |
void |
userBroadcast(String username,
Packet packet)
Broadcasts the given data to all connected sessions for a particular user. |
Methods inherited from class org.jivesoftware.wildfire.container.BasicModule |
---|
destroy, getName, start |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int NEVER_KICK
Constructor Detail |
---|
public SessionManager()
Method Detail |
---|
public static SessionManager getInstance()
SessionManagerImpl
being used by the XMPPServer.
SessionManagerImpl
being used by the XMPPServer.public ConnectionMultiplexerSession getConnectionMultiplexerSession(JID address)
address
- the address of the connection manager (no resource included) or a specific
session of the connection manager (resource included).
public List<ConnectionMultiplexerSession> getConnectionMultiplexerSessions()
public List<ConnectionMultiplexerSession> getConnectionMultiplexerSessions(String domain)
domain
- the domain of the connection manager.
public InetAddress getConnectionMultiplexerInetAddress(String domain)
domain
- the domain of the connection manager.
public ConnectionMultiplexerSession createMultiplexerSession(Connection conn, JID address)
conn
- the connection to create the session from.address
- the JID (may include a resource) of the connection manager's session.
public StreamID nextStreamID()
public ClientSession createClientSession(Connection conn)
conn
- the connection to create the session from.
public ClientSession createClientSession(Connection conn, StreamID id)
conn
- the connection to create the session from.id
- the streamID to use for the new session.
UnauthorizedException
public HttpSession createClientHttpSession(long rid, InetAddress address, StreamID id) throws UnauthorizedException
UnauthorizedException
public Session createComponentSession(Connection conn) throws UnauthorizedException
UnauthorizedException
public IncomingServerSession createIncomingServerSession(Connection conn, StreamID id) throws UnauthorizedException
conn
- the connection to the remote server.id
- the stream ID used in the stream element when authenticating the server.
IncomingServerSession
.
UnauthorizedException
- if the local server has not been initialized yet.public void outgoingServerSessionCreated(OutgoingServerSession session)
session
- the newly created OutgoingServerSession.public void registerIncomingServerSession(String hostname, IncomingServerSession session)
hostname
- the hostname that is being served by the remote server.session
- the incoming server session to the remote server.public void unregisterIncomingServerSessions(String hostname)
hostname
- the hostname that is being served by the remote server.public void registerOutgoingServerSession(String hostname, OutgoingServerSession session)
OutgoingServerSession
may have one or more domains, subdomains or virtual hosts authenticated with the
remote server.
hostname
- the hostname that is being served by the remote server.session
- the outgoing server session to the remote server.public void unregisterOutgoingServerSession(String hostname)
OutgoingServerSession
may have one or more domains, subdomains or virtual hosts authenticated with the
remote server.
hostname
- the hostname that the session was connected with.public void addSession(ClientSession session)
public void sessionAvailable(ClientSession session)
session
- the session that receieved an available presence.public void broadcastPresenceToOtherResources(JID originatingResource, Presence presence)
originatingResource
- the full JID of the session that sent the presence update.public void sessionUnavailable(ClientSession session)
session
- the session that receieved an unavailable presence.public void changePriority(JID sender, int priority)
sender
- The sender who's session just changed prioritypriority
- The new priority for the sessionpublic ClientSession getBestRoute(JID recipient)
recipient
- The recipient ID to deliver packets to
public boolean isAnonymousRoute(String username)
public boolean isActiveRoute(String username, String resource)
public ClientSession getSession(JID from)
from
- the sender of the packet.
Session
associated with the JID.public ClientSession getSession(String username, String domain, String resource)
username
- the username of the JID.domain
- the username of the JID.resource
- the username of the JID.
Session
associated with the JID data.public Collection<ClientSession> getSessions()
public Collection<ClientSession> getSessions(SessionResultFilter filter)
public List<IncomingServerSession> getIncomingServerSessions(String hostname)
hostname
- the name of the remote server.
public OutgoingServerSession getOutgoingServerSession(String hostname)
hostname
- the name of the remote server.
public Iterator getAnonymousSessions()
public Collection<ClientSession> getSessions(String username)
public int getSessionCount()
public int getActiveSessionCount()
public int getAnonymousSessionCount()
public int getActiveSessionCount(String username)
getSessionCount(String)
.
username
- the user.
public int getSessionCount(String username)
public Collection<String> getSessionUsers()
public Collection<ComponentSession> getComponentSessions()
public ComponentSession getComponentSession(String domain)
domain
- the domain of the component session to look for.
public Collection<String> getIncomingServers()
public Collection<String> getOutgoingServers()
public void broadcast(Packet packet) throws UnauthorizedException
packet
- The packet to be broadcast
UnauthorizedException
public void userBroadcast(String username, Packet packet) throws UnauthorizedException, PacketException
packet
- The packet to be broadcast
UnauthorizedException
PacketException
public boolean removeSession(ClientSession session)
session
- the session.
public void addAnonymousSession(ClientSession session)
public int getConflictKickLimit()
public Collection<String> getPreAuthenticatedKeys()
public void setConflictKickLimit(int limit)
public void initialize(XMPPServer server)
BasicModule
Initializes the basic module.
Inheriting classes that choose to override this method MUST call this initialize() method before accessing BasicModule resources.
initialize
in interface Module
initialize
in class BasicModule
server
- the server hosting this module.public void sendServerMessage(String subject, String body)
subject
- the subject to broadcast.body
- the body to broadcast.public void sendServerMessage(JID address, String subject, String body)
address
- the address that defines the sessions that will receive the message.subject
- the subject to broadcast.body
- the body to broadcast.public void stop()
BasicModule
Stops the basic module.
Inheriting classes that choose to override this method MUST call this stop() method before accessing BasicModule resources.
stop
in interface Module
stop
in class BasicModule
public boolean isMultipleServerConnectionsAllowed()
It is highly recommended that getServerSessionTimeout()
is enabled so that
dead connections to this server can be easily discarded.
public void setMultipleServerConnectionsAllowed(boolean allowed)
It is highly recommended that getServerSessionTimeout()
is enabled so that
dead connections to this server can be easily discarded.
allowed
- true if remote servers are allowed to have more than one connection to this
server.public void setServerSessionTimeout(int timeout)
timeout
- the number of milliseconds to elapse between clearings.public int getServerSessionTimeout()
public void setServerSessionIdleTime(int idleTime)
public int getServerSessionIdleTime()
|
Wildfire 3.2.4 Javadoc | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |