Show
Ignore:
Timestamp:
06/21/07 16:49:13 (1 year ago)
Author:
mikey
Message:

added possibility to configure cache via xjconf

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/util/cache/stubAbstractCacheContainer.php

    r741 r742  
    1313 * @subpackage  util_cache 
    1414 */ 
    15 abstract class stubAbstractCacheContainer extends stubBaseObject 
     15abstract class stubAbstractCacheContainer extends stubSerializableObject 
    1616{ 
    1717    /** 
     
    3838     * 
    3939     * @param  string             $id        id of the container 
    40      * @param  stubCacheStrategy  $strategy  strategy the container should use 
    41      */ 
    42     public function __construct($id, stubCacheStrategy $strategy) 
    43     { 
    44         $this->id       = $id; 
    45         $this->strategy = $strategy; 
     40     */ 
     41    public function __construct($id) 
     42    { 
     43        $this->id = $id; 
    4644    } 
    4745