]> git.mxchange.org Git - city.git/blob - application/city/classes/filter/bootstrap/city_daemon/class_CityDaemonBootstrap
f3b41ec388be5b4c64d92fb3f5a9c39ea75ef300
[city.git] / application / city / classes / filter / bootstrap / city_daemon / class_CityDaemonBootstrap
1 <?php
2 // Own namespace
3 namespace Org\Mxchange\City\Daemon\Filter\Bootstrap;
4
5 // Import application-specific stuff
6 use Org\Mxchange\City\Daemon\Factory\CityDaemonFactory;
7 use Org\Mxchange\City\Filter\BaseCityFilter;
8
9 // Import framework stuff
10 use Org\Mxchange\CoreFramework\Filter\Filterable;
11 use Org\Mxchange\CoreFramework\Middleware\Debug\DebugMiddleware;
12 use Org\Mxchange\CoreFramework\Request\Requestable;
13 use Org\Mxchange\CoreFramework\Response\Responseable;
14
15 /**
16  * A ??? filter for bootstrapping
17  *
18  * @author              Roland Haeder <webmaster@ship-simu.org>
19  * @version             0.0.0
20  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Hub Developer Team
21  * @license             GNU GPL 3.0 or any newer version
22  * @link                http://www.ship-simu.org
23  *
24  * This program is free software: you can redistribute it and/or modify
25  * it under the terms of the GNU General Public License as published by
26  * the Free Software Foundation, either version 3 of the License, or
27  * (at your option) any later version.
28  *
29  * This program is distributed in the hope that it will be useful,
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
32  * GNU General Public License for more details.
33  *
34  * You should have received a copy of the GNU General Public License
35  * along with this program. If not, see <http://www.gnu.org/licenses/>.
36  */
37 class CityDaemonBootstrap???Filter extends BaseCityFilter implements Filterable {
38         /**
39          * Protected constructor
40          *
41          * @return      void
42          */
43         protected function __construct () {
44                 // Call parent constructor
45                 parent::__construct(__CLASS__);
46         }
47
48         /**
49          * Creates an instance of this filter class
50          *
51          * @return      $filterInstance         An instance of this filter class
52          */
53         public final static function createCityDaemonBootstrap???Filter () {
54                 // Get a new instance
55                 $filterInstance = new CityDaemonBootstrap???Filter();
56
57                 // Return the instance
58                 return $filterInstance;
59         }
60
61         /**
62          * Executes the filter with given request and response objects
63          *
64          * @param       $requestInstance        An instance of a class with an Requestable interface
65          * @param       $responseInstance       An instance of a class with an Responseable interface
66          * @return      void
67          * @todo        0% done
68          */
69         public function execute (Requestable $requestInstance, Responseable $responseInstance) {
70                 // Get city instance
71                 $cityInstance = CityDaemonFactory::createCityDaemonInstance($requestInstance, $responseInstance);
72
73                 // Now do something
74                 DebugMiddleware::getSelfInstance()->partialStub('Please implement this step.');
75         }
76 }