- Timestamp:
- 01/16/08 14:31:44 (10 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/ipo/session/stubSession.php
r1232 r1242 19 19 * key to be associated with the start time of the session 20 20 */ 21 const START_TIME = '__stubbles_SessionStartTime';21 const START_TIME = '__stubbles_SessionStartTime'; 22 22 /** 23 23 * key to be associated with the token for the next request 24 24 */ 25 const NEXT_TOKEN = '__stubbles_SessionNextToken';25 const NEXT_TOKEN = '__stubbles_SessionNextToken'; 26 26 /** 27 27 * key to be associated with the fingerprint of the user 28 28 */ 29 const FINGERPRINT = '__stubbles_SessionFingerprint'; 29 const FINGERPRINT = '__stubbles_SessionFingerprint'; 30 /** 31 * registry key for session class to be used 32 */ 33 const CLASS_REGISTRY_KEY = 'net.stubbles.ipo.session.class'; 34 /** 35 * registry key for session fingerprint salt to be used 36 */ 37 const SALT_REGISTRY_KEY = 'net.stubbles.ipo.session.fingerprintSalt'; 38 /** 39 * registry key for session name to be used 40 */ 41 const NAME_REGISTRY_KEY = 'net.stubbles.ipo.session.name'; 30 42 /** 31 43 * default session name 32 44 */ 33 45 const DEFAULT_SESSION_NAME = 'PHPSESSID'; 34 46 35 47 /** 36 48 * checks whether session has been started
