Changeset 1544 for trunk/src/main/php/net/stubbles/service/jsonrpc
- Timestamp:
- 04/13/08 21:48:05 (7 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/service/jsonrpc/stubJsonRpcProcessor.php
r1534 r1544 33 33 34 34 /** 35 * constructor 36 * 37 * @param stubRequest $request the current request 38 * @param stubSession $session the current session 39 * @param stubResponse $response the current response 35 * optional template method to do some constructor work in derived classes 40 36 */ 41 p ublic function __construct(stubRequest $request, stubSession $session, stubResponse $response)37 protected function doConstruct() 42 38 { 43 parent::__construct($request, $session, $response);44 39 $this->configFile = stubConfig::getConfigPath() . DIRECTORY_SEPARATOR . stubRegistry::getConfig(self::KEY_SERVICE_FILE, 'json-rpc-service.ini'); 45 40 }
