]> git.mxchange.org Git - hub.git/commitdiff
added missing namespaces
authorRoland Häder <roland@mxchange.org>
Fri, 19 May 2017 00:46:20 +0000 (02:46 +0200)
committerRoland Häder <roland@mxchange.org>
Fri, 21 Aug 2020 16:49:59 +0000 (18:49 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
application/hub/classes/filter/bootstrap/node/class_NodeBootstrapGenerateSessionIdFilter.php
application/hub/config.php

index fadb4170ce5e7470f5b05facec5eb48ef4366a6e..f87c66fc24a1d898a4b73e02d55252f11fbce1b6 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 // Own namespace
-namespace Hub\Filter\Bootstrap\Node;
+namespace Hub\Filter\Bootstrap\Node\SessionId;
 
 // Import application-specific stuff
 use Hub\Factory\Node\NodeObjectFactory;
index 11bfdccb781d64fc0b6a6ed1d9f40bca5e9fe3a0..aa793c813d55404600fb7f7071a3738124910492 100644 (file)
@@ -169,40 +169,40 @@ $cfg->setConfigEntry('news_process_filter', 'CoreFramework\Filter\News\NewsProce
 $cfg->setConfigEntry('node_php_requirements_filter', 'Hub\Filter\Node\Requirements\NodePhpRequirementsFilter');
 
 // CFG: NODE-INITIALIZER-FILTER
-$cfg->setConfigEntry('node_initializer_filter', 'NodeInitializationFilter');
+$cfg->setConfigEntry('node_initializer_filter', 'Hub\Filter\Node\Initialization\NodeInitializationFilter');
 
 // CFG: NODE-ACTIVATION-TASK-HANDLER-INITIALIZER-FILTER
-$cfg->setConfigEntry('node_activation_task_handler_initializer_filter', 'NodeTaskHandlerInitializerFilter');
+$cfg->setConfigEntry('node_activation_task_handler_initializer_filter', 'Hub\Filter\Initializer\Node\Handler\Task\NodeTaskHandlerInitializerFilter');
 
 // CFG: NODE-ACTIVATION-ANNOUNCEMENT-TASK-FILTER
 $cfg->setConfigEntry('node_activation_announcement_task_filter', 'NodeActivationAnnouncementFilter');
 
 // CFG: NODE-WELCOME-TEASER-FILTER
-$cfg->setConfigEntry('node_welcome_teaser_filter', 'NodeWelcomeTeaserFilter');
+$cfg->setConfigEntry('node_welcome_teaser_filter', 'Hub\Filter\Node\WelcomeTeaser\NodeWelcomeTeaserFilter');
 
 // CFG: NODE-BOOTSTRAP-GENERATE-NODEID-FILTER
-$cfg->setConfigEntry('node_bootstrap_generate_nodeid_filter', 'NodeBootstrapGenerateNodeIdFilter');
+$cfg->setConfigEntry('node_bootstrap_generate_nodeid_filter', 'Hub\Filter\Bootstrap\Node\NodeId\NodeBootstrapGenerateNodeIdFilter');
 
 // CFG: NODE-BOOTSTRAP-GENERATE-SESSIONID-FILTER
-$cfg->setConfigEntry('node_bootstrap_generate_sessionid_filter', 'NodeBootstrapGenerateSessionIdFilter');
+$cfg->setConfigEntry('node_bootstrap_generate_sessionid_filter', 'Hub\Filter\Bootstrap\Node\SessionId\NodeBootstrapGenerateSessionIdFilter');
 
 // CFG: NODE-BOOTSTRAP-GENERATE-PRIVATE-KEY-FILTER
-$cfg->setConfigEntry('node_bootstrap_generate_private_key_filter', 'NodeBootstrapGeneratePrivateKeyFilter');
+$cfg->setConfigEntry('node_bootstrap_generate_private_key_filter', 'Hub\Filter\Bootstrap\Node\PrivateKey\NodeBootstrapGeneratePrivateKeyFilter');
 
 // CFG: NODE-BOOTSTRAP-EXTRA-BOOTSTRAPPING-FILTER
-$cfg->setConfigEntry('node_bootstrap_extra_bootstrapping_filter', 'NodeBootstrapExtraBootstrappingFilter');
+$cfg->setConfigEntry('node_bootstrap_extra_bootstrapping_filter', 'Hub\Filter\Bootstrap\Node\Extra\NodeBootstrapExtraBootstrappingFilter');
 
 // CFG: NODE-BOOTSTRAP-LISTENER-POOL-FILTER
-$cfg->setConfigEntry('node_bootstrap_listener_pool_filter', 'NodeBootstrapListenerPoolFilter');
+$cfg->setConfigEntry('node_bootstrap_listener_pool_filter', 'Hub\Filter\Bootstrap\Node\Pool\NodeBootstrapListenerPoolFilter');
 
 // CFG: NODE-SHUTDOWN-FLUSH-NODE-LIST-FILTER
-$cfg->setConfigEntry('node_shutdown_flush_node_list_filter', 'NodeShutdownFlushNodeListFilter');
+$cfg->setConfigEntry('node_shutdown_flush_node_list_filter', 'Hub\Filter\Shutdown\Node\NodeList\NodeShutdownFlushNodeListFilter');
 
 // CFG: NODE-SHUTDOWN-TASK-HANDLER-FILTER
-$cfg->setConfigEntry('node_shutdown_task_handler_filter', 'NodeShutdownTaskHandlerFilter');
+$cfg->setConfigEntry('node_shutdown_task_handler_filter', 'Hub\Filter\Shutdown\Node\Handler\Task\NodeShutdownTaskHandlerFilter');
 
 // CFG: NODE-SHUTDOWN-NODE-FILTER
-$cfg->setConfigEntry('node_shutdown_node_filter', 'NodeShutdownNodeFilter');
+$cfg->setConfigEntry('node_shutdown_node_filter', 'Hub\Filter\Shutdown\Node\NodeShutdownNodeFilter');
 
 // CFG: PACKAGE-FILTER-CHAIN-CLASS
 $cfg->setConfigEntry('package_filter_chain_class', 'PackageFilterChain');
@@ -262,7 +262,7 @@ $cfg->setConfigEntry('node_answer_message_dht_bootstrap_helper_class', 'NodeDhtB
 $cfg->setConfigEntry('node_next_announcement_answer_okay_helper_class', 'NodeRequestNodeListHelper');
 
 // CFG: NEWS-READER-MAIN-CLASS
-$cfg->setConfigEntry('news_reader_main_class', 'ConsoleNewsReader');
+$cfg->setConfigEntry('news_reader_main_class', 'CoreFramework\Reader\News\Console\ConsoleNewsReader');
 
 // CFG: NODE-ANNOUNCEMENT-TEMPLATE-CLASS
 $cfg->setConfigEntry('node_announcement_template_class', 'XmlAnnouncementTemplateEngine');