Skip to content
Snippets Groups Projects
Commit 0e4f2ced authored by Olav Morken's avatar Olav Morken
Browse files

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
parent 46f22e70
No related branches found
No related tags found
No related merge requests found
...@@ -40,7 +40,6 @@ class SimpleSAML_Session { ...@@ -40,7 +40,6 @@ class SimpleSAML_Session {
* This is mostly used at the Shib and SAML 2.0 IdP side, at the SSOService endpoint. * This is mostly used at the Shib and SAML 2.0 IdP side, at the SSOService endpoint.
*/ */
private $authnrequests = array(); private $authnrequests = array();
private $logoutrequest = null;
private $idp = null; private $idp = null;
private $authenticated = null; private $authenticated = null;
...@@ -298,23 +297,6 @@ class SimpleSAML_Session { ...@@ -298,23 +297,6 @@ class SimpleSAML_Session {
return $this->idp; 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) { public function setSessionIndex($sessionindex) {
SimpleSAML_Logger::debug('Library - Session: Set sessionindex: ' . $sessionindex); SimpleSAML_Logger::debug('Library - Session: Set sessionindex: ' . $sessionindex);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment