Changeset 1038
- Timestamp:
- 11/13/07 16:42:23 (10 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/events/stubEventsXJConfInitializer.php
r1035 r1038 9 9 stubClassLoader::load('net.stubbles.events.events', 10 10 'net.stubbles.events.stubEventsInitializer', 11 'net.stubbles.ipo.interceptors.stubPreInterceptor', 11 12 'net.stubbles.lang.exceptions.stubIllegalArgumentException', 12 13 'net.stubbles.util.xjconf.xjconf' … … 18 19 * @subpackage events 19 20 */ 20 class stubEventsXJConfInitializer extends stubXJConfAbstractInitializer implements stubEventsInitializer 21 class stubEventsXJConfInitializer extends stubXJConfAbstractInitializer implements stubEventsInitializer, stubPreInterceptor 21 22 { 22 23 /** … … 127 128 $xjconfProxy->process(); 128 129 } 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 } 129 142 } 130 143 ?>
