Commit f1be33c0 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gaston

Added utility method useful for debugging.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@1159 b35dd754-fafc-0310-a699-88a17e54d16e
parent 9711f521
......@@ -998,6 +998,16 @@ public class SessionManager extends BasicModule {
return conflictLimit;
}
/**
* Returns the temporary keys used by the sessions that has not been authenticated yet. This
* is an utility method useful for debugging situations.
*
* @return the temporary keys used by the sessions that has not been authenticated yet.
*/
public Collection<String> getPreAuthenticatedKeys() {
return preAuthenticatedSessions.keySet();
}
public void setConflictKickLimit(int limit) {
conflictLimit = limit;
JiveGlobals.setProperty("xmpp.session.conflict-limit", Integer.toString(conflictLimit));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment