Subversion Repositories oidplus

Rev

Rev 567 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 567 Rev 569
Line 29... Line 29...
29
                return $sesHandler;
29
                return $sesHandler;
30
        }
30
        }
31
 
31
 
32
        // Override abstract functions
32
        // Override abstract functions
33
 
33
 
34
        protected function getValue($name) {
34
        public function getValue($name, $default = NULL) {
35
                return $this->getSessionHandler()->getValue($name);
35
                return $this->getSessionHandler()->getValue($name, $default);
-
 
36
 
36
        }
37
        }
37
 
38
 
38
        protected function setValue($name, $value) {
39
        public function setValue($name, $value) {
39
                return $this->getSessionHandler()->setValue($name, $value);
40
                return $this->getSessionHandler()->setValue($name, $value);
40
        }
41
        }
41
 
42
 
-
 
43
        public function exists($name) {
-
 
44
                return $this->getSessionHandler()->exists($name);
-
 
45
        }
-
 
46
 
-
 
47
        public function delete($name) {
-
 
48
                return $this->getSessionHandler()->delete($name);
-
 
49
        }
-
 
50
 
42
        protected function destroySession() {
51
        protected function destroySession() {
43
                return $this->getSessionHandler()->destroySession();
52
                return $this->getSessionHandler()->destroySession();
44
        }
53
        }
45
 
54
 
46
}
55
}
47
56