Lines Matching defs:FSSessionManager

25  * $Id: FSSessionManager.java,v 1.6 2009/08/03 18:18:36 bigfatrat Exp $
58 * The class <code>FSSessionManager</code> is a <code>final</code> class
62 * calling <code>FSSessionManager.getInstance()</code>.
64 public final class FSSessionManager {
77 // Singleton instance of FSSessionManager
151 FSUtils.debug.message("FSSessionManager, cleanup interval="
194 FSUtils.debug.message ("FSSessionManager.getAuthnRequest: Called");
206 "FSSessionManager.setAuthnRequest: Called, ID=" + requestID );
222 "FSSessionManager.removeAuthnRequest: Called, ID=" + requestID);
240 FSUtils.debug.message ("FSSessionManager.getLocalSessionToken: Called");
250 FSUtils.debug.message ("FSSessionManager.setLocalSessionToken: Called");
263 "FSSessionManager.removeLocalSessionToken: Called");
276 FSUtils.debug.message("FSSessionManager.getIDPEntityID: Called");
289 FSUtils.debug.message ("FSSessionManager.setIDPEntityID");
343 FSUtils.debug.message ("FSSessionManager.getSessionList: Called");
353 FSUtils.debug.message ("FSSessionManager.setSessionList: Called");
365 FSUtils.debug.message ("FSSessionManager.removeSessionList: Called ");
379 FSUtils.debug.message ("FSSessionManager.getSession: Called ");
404 FSUtils.debug.message("FSSessionManager.getSession(sessionIndex):");
406 FSUtils.debug.error("FSSessionManager.getSession(sessionIndex):" +
423 FSUtils.debug.message("FSSessionManager.getSession(sessionIndex):" +
435 FSUtils.debug.message ("FSSessionManager.getSession: Called");
445 FSUtils.debug.error("FSSessionManager.getSession(token) : ", e);
460 FSUtils.debug.message ("FSSessionManager.removeProvider: Called ");
463 FSUtils.debug.message("FSSessionManager.removeProvider: " +
494 FSUtils.debug.message ("FSSessionManager.removeSession: Called");
519 FSUtils.debug.message ("FSSessionManager.addSession: Called");
540 private FSSessionManager (String metaAlias){
542 FSUtils.debug.message ("FSSessionManager(): created " + metaAlias);
550 FSUtils.debug.warning("FSSessionManager constructor: couldnot "
582 FSUtils.debug.message("FSSessionManager.getInstance: " +
595 * Gets the singleton instance of <code>FSSessionManager</code>.
597 * @return The singleton <code>FSSessionManager</code> instance
600 public static synchronized FSSessionManager getInstance (String metaAlias){
603 FSUtils.debug.message ("FSSessionManager.getInstance: Called "
608 "FSSessionManager.getInstance: null provider meta alias");
611 FSSessionManager instance =
612 (FSSessionManager)instanceMap.get(metaAlias);
615 FSUtils.debug.message ("FSSessionManager.getInstance: " +
616 "new instance of FSSessionManager: " + metaAlias);
618 instance = new FSSessionManager(metaAlias);