public class LocalConnectionMultiplexerSession extends LocalSession implements ConnectionMultiplexerSession
Each Connection Manager has its own domain. Each connection from the same connection manager
uses a different resource. Unlike any other session, connection manager sessions are not
present in the routing table. This means that connection managers are not reachable entities.
In other words, entities cannot send packets to connection managers but clients being hosted
by them. The main reason behind this design decision is that connection managers are private
components of the server so they can only be contacted by the server. Connection Manager
sessions are present in SessionManager
but not in RoutingTable
. Use
SessionManager.getConnectionMultiplexerSessions(String)
to get all sessions or
ConnectionMultiplexerManager.getMultiplexerSession(String)
to get a random session to a given connection manager.
CHARSET, conn, sessionManager, status
MAJOR_VERSION, MINOR_VERSION, STATUS_AUTHENTICATED, STATUS_CLOSED, STATUS_CONNECTED
Constructor and Description |
---|
LocalConnectionMultiplexerSession(String serverName,
Connection connection,
StreamID streamID) |
Modifier and Type | Method and Description |
---|---|
boolean |
authenticate(String digest)
Authenticates the connection manager.
|
static LocalConnectionMultiplexerSession |
createSession(String serverName,
org.xmlpull.v1.XmlPullParser xpp,
Connection connection) |
String |
getAvailableStreamFeatures()
Returns a text with the available stream features.
|
static Connection.CompressionPolicy |
getCompressionPolicy()
Returns whether compression is optional or is disabled for clients.
|
static Connection.TLSPolicy |
getTLSPolicy()
Returns whether TLS is mandatory, optional or is disabled for clients.
|
static void |
setCompressionPolicy(Connection.CompressionPolicy policy)
Sets whether compression is optional or is disabled for clients.
|
static void |
setTLSPolicy(Connection.TLSPolicy policy)
Sets whether TLS is mandatory, optional or is disabled for clients.
|
close, decodeVersion, deliverRawText, getAddress, getCipherSuiteName, getConnection, getCreationDate, getHostAddress, getHostName, getLastActiveDate, getNumClientPackets, getNumServerPackets, getServerName, getSessionData, getStatus, getStreamID, incrementClientPacketCount, incrementServerPacketCount, isClosed, isSecure, isUsingSelfSignedCertificate, process, removeSessionData, setAddress, setSessionData, setStatus, toString, validate
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
close, deliverRawText, getAddress, getCipherSuiteName, getCreationDate, getHostAddress, getHostName, getLastActiveDate, getNumClientPackets, getNumServerPackets, getServerName, getStatus, getStreamID, isClosed, isSecure, process, validate
public LocalConnectionMultiplexerSession(String serverName, Connection connection, StreamID streamID)
public static LocalConnectionMultiplexerSession createSession(String serverName, org.xmlpull.v1.XmlPullParser xpp, Connection connection) throws org.xmlpull.v1.XmlPullParserException
org.xmlpull.v1.XmlPullParserException
public String getAvailableStreamFeatures()
LocalSession
getAvailableStreamFeatures
in class LocalSession
public boolean authenticate(String digest)
digest
- the digest provided by the connection manager with the handshake stanza.public static Connection.TLSPolicy getTLSPolicy()
public static void setTLSPolicy(Connection.TLSPolicy policy)
policy
- whether TLS is mandatory, optional or is disabled.public static Connection.CompressionPolicy getCompressionPolicy()
public static void setCompressionPolicy(Connection.CompressionPolicy policy)
policy
- whether compression is optional or is disabled.Copyright © 2003-2008 Jive Software.