Lines Matching defs:FSSessionManager

25  * $Id: FSSessionManager.java,v 1.6 2009/08/03 18:18:36 bigfatrat Exp $
61 * The class <code>FSSessionManager</code> is a <code>final</code> class
65 * calling <code>FSSessionManager.getInstance()</code>.
67 public final class FSSessionManager {
80 // Singleton instance of FSSessionManager
154 FSUtils.debug.message("FSSessionManager, cleanup interval="
197 FSUtils.debug.message ("FSSessionManager.getAuthnRequest: Called");
209 "FSSessionManager.setAuthnRequest: Called, ID=" + requestID );
225 "FSSessionManager.removeAuthnRequest: Called, ID=" + requestID);
243 FSUtils.debug.message ("FSSessionManager.getLocalSessionToken: Called");
253 FSUtils.debug.message ("FSSessionManager.setLocalSessionToken: Called");
266 "FSSessionManager.removeLocalSessionToken: Called");
279 FSUtils.debug.message("FSSessionManager.getIDPEntityID: Called");
292 FSUtils.debug.message ("FSSessionManager.setIDPEntityID");
346 FSUtils.debug.message ("FSSessionManager.getSessionList: Called");
356 FSUtils.debug.message ("FSSessionManager.setSessionList: Called");
368 FSUtils.debug.message ("FSSessionManager.removeSessionList: Called ");
382 FSUtils.debug.message ("FSSessionManager.getSession: Called ");
407 FSUtils.debug.message("FSSessionManager.getSession(sessionIndex):");
409 FSUtils.debug.error("FSSessionManager.getSession(sessionIndex):" +
426 FSUtils.debug.message("FSSessionManager.getSession(sessionIndex):" +
438 FSUtils.debug.message ("FSSessionManager.getSession: Called");
448 FSUtils.debug.error("FSSessionManager.getSession(token) : ", e);
463 FSUtils.debug.message ("FSSessionManager.removeProvider: Called ");
466 FSUtils.debug.message("FSSessionManager.removeProvider: " +
497 FSUtils.debug.message ("FSSessionManager.removeSession: Called");
522 FSUtils.debug.message ("FSSessionManager.addSession: Called");
543 private FSSessionManager (String metaAlias){
545 FSUtils.debug.message ("FSSessionManager(): created " + metaAlias);
553 FSUtils.debug.warning("FSSessionManager constructor: couldnot "
585 FSUtils.debug.message("FSSessionManager.getInstance: " +
598 * Gets the singleton instance of <code>FSSessionManager</code>.
600 * @return The singleton <code>FSSessionManager</code> instance
603 public static synchronized FSSessionManager getInstance (String metaAlias){
606 FSUtils.debug.message ("FSSessionManager.getInstance: Called "
611 "FSSessionManager.getInstance: null provider meta alias");
614 FSSessionManager instance =
615 (FSSessionManager)instanceMap.get(metaAlias);
618 FSUtils.debug.message ("FSSessionManager.getInstance: " +
619 "new instance of FSSessionManager: " + metaAlias);
621 instance = new FSSessionManager(metaAlias);