- Timestamp:
- 04/11/08 18:37:17 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/ipo/session/stubAbstractSession.php
r1531 r1532 62 62 { 63 63 $this->sessionName = $sessionName; 64 $this->doConstruct($request, $response, $sessionName); 64 if ($this->doConstruct($request, $response, $sessionName) === false) { 65 return; 66 } 67 65 68 if ($this->hasValue(stubSession::START_TIME) == false || $this->doGetValue(stubSession::FINGERPRINT) != $this->getFingerprint()) { 66 69 if ($this->hasValue(stubSession::START_TIME) == false) { … … 86 89 * template method for child classes to do the real construction 87 90 * 88 * @param stubRequest $request request instance 89 * @param stubResponse $response response instance 90 * @param string $sessionName name of the session 91 * @param stubRequest $request request instance 92 * @param stubResponse $response response instance 93 * @param string $sessionName name of the session 94 * @return bool 91 95 */ 92 96 protected abstract function doConstruct(stubRequest $request, stubResponse $response, $sessionName);
