From 0e4f2cedb438d3329df7664bb5c65fd8976fbe35 Mon Sep 17 00:00:00 2001
From: Olav Morken <olav.morken@uninett.no>
Date: Fri, 16 May 2008 06:55:09 +0000
Subject: [PATCH] Session: removed {set,get}LogoutRequest.

The logout handlers currently use the setData and getData interfaces.


git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@575 44740490-163a-0410-bde0-09ae8108e29a
---
 lib/SimpleSAML/Session.php | 18 ------------------
 1 file changed, 18 deletions(-)

diff --git a/lib/SimpleSAML/Session.php b/lib/SimpleSAML/Session.php
index 6825b1d26..d12c13eb8 100644
--- a/lib/SimpleSAML/Session.php
+++ b/lib/SimpleSAML/Session.php
@@ -40,7 +40,6 @@ class SimpleSAML_Session {
 	 * This is mostly used at the Shib and SAML 2.0 IdP side, at the SSOService endpoint.
 	 */
 	private $authnrequests = array();
-	private $logoutrequest = null;
 	private $idp = null;
 	
 	private $authenticated = null;
@@ -298,23 +297,6 @@ class SimpleSAML_Session {
 		return $this->idp;
 	}
 	
-	
-	
-	
-	
-	public function setLogoutRequest($requestcache) {
-		SimpleSAML_Logger::debug('Library - Session: Adding LogoutRequest cache.');
-		$this->dirty = true;
-		$this->logoutrequest = $requestcache;
-	}
-	
-	public function getLogoutRequest() {
-		return $this->logoutrequest;
-	}
-	
-	
-	
-	
 
 	public function setSessionIndex($sessionindex) {
 		SimpleSAML_Logger::debug('Library - Session: Set sessionindex: ' . $sessionindex);
-- 
GitLab