- Timestamp:
- 03/20/08 17:51:12 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/websites/processors/stubProcessorResolver.php
r1231 r1445 10 10 'net::stubbles::ipo::response::stubResponse', 11 11 'net::stubbles::ipo::session::stubSession', 12 'net::stubbles::websites::processors::stubProcessor', 13 'net::stubbles::websites::processors::stubProcessorException', 14 'net::stubbles::websites::stubPageFactory' 12 'net::stubbles::websites::processors::stubProcessor' 15 13 ); 16 14 /** … … 23 21 { 24 22 /** 25 * sets the page factory to use to read the page configuration26 *27 * @param stubPageFactory $pageFactory28 */29 public function setPageFactory(stubPageFactory $pageFactory);30 31 /**32 * returns the page factory delivered within the constructor33 *34 * @return stubPageFactory35 */36 public function getPageFactory();37 38 /**39 23 * resolves the request and creates the appropriate processor 40 24 * … … 43 27 * @param stubResponse $response the current response 44 28 * @return stubProcessor 45 * @throws stubProcessorException46 29 */ 47 30 public function resolve(stubRequest $request, stubSession $session, stubResponse $response);
