Changeset 1038

Show
Ignore:
Timestamp:
11/13/07 16:42:23 (10 months ago)
Author:
mikey
Message:

stubEventsXJConfInitializer now implements stubPreInterceptor as well

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/events/stubEventsXJConfInitializer.php

    r1035 r1038  
    99stubClassLoader::load('net.stubbles.events.events', 
    1010                      'net.stubbles.events.stubEventsInitializer', 
     11                      'net.stubbles.ipo.interceptors.stubPreInterceptor', 
    1112                      'net.stubbles.lang.exceptions.stubIllegalArgumentException', 
    1213                      'net.stubbles.util.xjconf.xjconf' 
     
    1819 * @subpackage  events 
    1920 */ 
    20 class stubEventsXJConfInitializer extends stubXJConfAbstractInitializer implements stubEventsInitializer 
     21class stubEventsXJConfInitializer extends stubXJConfAbstractInitializer implements stubEventsInitializer, stubPreInterceptor 
    2122{ 
    2223    /** 
     
    127128        $xjconfProxy->process(); 
    128129    } 
     130 
     131    /** 
     132     * does the preprocessing stuff 
     133     * 
     134     * @param  stubRequest   $request   access to request data 
     135     * @param  stubSession   $session   access to session data 
     136     * @param  stubResponse  $response  access to response data 
     137     */ 
     138    public function preProcess(stubRequest $request, stubSession $session, stubResponse $response) 
     139    { 
     140        $this->init(); 
     141    } 
    129142} 
    130143?>