Show
Ignore:
Timestamp:
03/20/08 17:51:12 (8 months ago)
Author:
mikey
Message:

refactoring #137, part 7: page factories are now attributes of the processors, and not of the resolvers

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/websites/processors/stubProcessorResolver.php

    r1231 r1445  
    1010                      'net::stubbles::ipo::response::stubResponse', 
    1111                      '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' 
    1513); 
    1614/** 
     
    2321{ 
    2422    /** 
    25      * sets the page factory to use to read the page configuration 
    26      * 
    27      * @param  stubPageFactory  $pageFactory 
    28      */ 
    29     public function setPageFactory(stubPageFactory $pageFactory); 
    30  
    31     /** 
    32      * returns the page factory delivered within the constructor 
    33      * 
    34      * @return  stubPageFactory 
    35      */ 
    36     public function getPageFactory(); 
    37  
    38     /** 
    3923     * resolves the request and creates the appropriate processor 
    4024     * 
     
    4327     * @param   stubResponse   $response  the current response 
    4428     * @return  stubProcessor 
    45      * @throws  stubProcessorException 
    4629     */ 
    4730    public function resolve(stubRequest $request, stubSession $session, stubResponse $response);