web/lib/Zend/Tool/Framework/Registry/Interface.php
changeset 64 162c1de6545a
parent 19 1c2f13fd785c
child 68 ecaf28ffe26e
equal deleted inserted replaced
63:5b37998e522e 64:162c1de6545a
       
     1 <?php
       
     2 /**
       
     3  * Zend Framework
       
     4  *
       
     5  * LICENSE
       
     6  *
       
     7  * This source file is subject to the new BSD license that is bundled
       
     8  * with this package in the file LICENSE.txt.
       
     9  * It is also available through the world-wide-web at this URL:
       
    10  * http://framework.zend.com/license/new-bsd
       
    11  * If you did not receive a copy of the license and are unable to
       
    12  * obtain it through the world-wide-web, please send an email
       
    13  * to license@zend.com so we can send you a copy immediately.
       
    14  *
       
    15  * @category   Zend
       
    16  * @package    Zend_Tool
       
    17  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
       
    18  * @license    http://framework.zend.com/license/new-bsd     New BSD License
       
    19  * @version    $Id: Interface.php 20096 2010-01-06 02:05:09Z bkarwin $
       
    20  */
       
    21 
       
    22 /**
       
    23  * @category   Zend
       
    24  * @package    Zend_Tool
       
    25  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
       
    26  * @license    http://framework.zend.com/license/new-bsd     New BSD License
       
    27  */
       
    28 interface Zend_Tool_Framework_Registry_Interface
       
    29 {
       
    30 
       
    31 
       
    32     /**
       
    33      * setClient()
       
    34      *
       
    35      * @param Zend_Tool_Framework_Client_Abstract $client
       
    36      * @return Zend_Tool_Framework_Registry
       
    37      */
       
    38     public function setClient(Zend_Tool_Framework_Client_Abstract $client);
       
    39 
       
    40     /**
       
    41      * getClient() return the client in the registry
       
    42      *
       
    43      * @return Zend_Tool_Framework_Client_Abstract
       
    44      */
       
    45     public function getClient();
       
    46 
       
    47     /**
       
    48      * setLoader()
       
    49      *
       
    50      * @param Zend_Tool_Framework_Loader_Abstract $loader
       
    51      * @return Zend_Tool_Framework_Registry
       
    52      */
       
    53     public function setLoader(Zend_Tool_Framework_Loader_Interface $loader);
       
    54 
       
    55     /**
       
    56      * getLoader()
       
    57      *
       
    58      * @return Zend_Tool_Framework_Loader_Abstract
       
    59      */
       
    60     public function getLoader();
       
    61 
       
    62     /**
       
    63      * setActionRepository()
       
    64      *
       
    65      * @param Zend_Tool_Framework_Action_Repository $actionRepository
       
    66      * @return Zend_Tool_Framework_Registry
       
    67      */
       
    68     public function setActionRepository(Zend_Tool_Framework_Action_Repository $actionRepository);
       
    69 
       
    70     /**
       
    71      * getActionRepository()
       
    72      *
       
    73      * @return Zend_Tool_Framework_Action_Repository
       
    74      */
       
    75     public function getActionRepository();
       
    76 
       
    77     /**
       
    78      * setProviderRepository()
       
    79      *
       
    80      * @param Zend_Tool_Framework_Provider_Repository $providerRepository
       
    81      * @return Zend_Tool_Framework_Registry
       
    82      */
       
    83     public function setProviderRepository(Zend_Tool_Framework_Provider_Repository $providerRepository);
       
    84 
       
    85     /**
       
    86      * getProviderRepository()
       
    87      *
       
    88      * @return Zend_Tool_Framework_Provider_Repository
       
    89      */
       
    90     public function getProviderRepository();
       
    91 
       
    92     /**
       
    93      * setManifestRepository()
       
    94      *
       
    95      * @param Zend_Tool_Framework_Manifest_Repository $manifestRepository
       
    96      * @return Zend_Tool_Framework_Registry
       
    97      */
       
    98     public function setManifestRepository(Zend_Tool_Framework_Manifest_Repository $manifestRepository);
       
    99 
       
   100     /**
       
   101      * getManifestRepository()
       
   102      *
       
   103      * @return Zend_Tool_Framework_Manifest_Repository
       
   104      */
       
   105     public function getManifestRepository();
       
   106 
       
   107     /**
       
   108      * setRequest()
       
   109      *
       
   110      * @param Zend_Tool_Framework_Client_Request $request
       
   111      * @return Zend_Tool_Framework_Registry
       
   112      */
       
   113     public function setRequest(Zend_Tool_Framework_Client_Request $request);
       
   114 
       
   115     /**
       
   116      * getRequest()
       
   117      *
       
   118      * @return Zend_Tool_Framework_Client_Request
       
   119      */
       
   120     public function getRequest();
       
   121 
       
   122     /**
       
   123      * setResponse()
       
   124      *
       
   125      * @param Zend_Tool_Framework_Client_Response $response
       
   126      * @return Zend_Tool_Framework_Registry
       
   127      */
       
   128     public function setResponse(Zend_Tool_Framework_Client_Response $response);
       
   129 
       
   130     /**
       
   131      * getResponse()
       
   132      *
       
   133      * @return Zend_Tool_Framework_Client_Response
       
   134      */
       
   135     public function getResponse();
       
   136 
       
   137 }