Show
Ignore:
Timestamp:
01/16/08 14:31:44 (10 months ago)
Author:
mikey
Message:

replaced some overall used registry keys by class constants

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/ipo/session/stubSession.php

    r1232 r1242  
    1919     * key to be associated with the start time of the session 
    2020     */ 
    21     const START_TIME  = '__stubbles_SessionStartTime'; 
     21    const START_TIME           = '__stubbles_SessionStartTime'; 
    2222    /** 
    2323     * key to be associated with the token for the next request 
    2424     */ 
    25     const NEXT_TOKEN  = '__stubbles_SessionNextToken'; 
     25    const NEXT_TOKEN           = '__stubbles_SessionNextToken'; 
    2626    /** 
    2727     * key to be associated with the fingerprint of the user 
    2828     */ 
    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'; 
    3042    /** 
    3143     * default session name 
    3244     */ 
    3345    const DEFAULT_SESSION_NAME = 'PHPSESSID'; 
    34      
     46 
    3547    /** 
    3648     * checks whether session has been started