From: Roland Häder Date: Sun, 6 Dec 2020 05:54:05 +0000 (+0100) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=51213341881079696d63ff9028c01a75d5fe7714;p=hub.git Continued: - removed all .htaccess files, please secure it on your own on server-side's configuration - introduced LocateableNodeTrait, so far only used in BaseProtocolHandler Signed-off-by: Roland Häder --- diff --git a/application/.htaccess b/application/.htaccess deleted file mode 100644 index 3a4288278..000000000 --- a/application/.htaccess +++ /dev/null @@ -1 +0,0 @@ -Deny from all diff --git a/application/hub/.htaccess b/application/hub/.htaccess deleted file mode 100644 index 3a4288278..000000000 --- a/application/hub/.htaccess +++ /dev/null @@ -1 +0,0 @@ -Deny from all diff --git a/application/hub/classes/apt-proxy/class_ b/application/hub/classes/apt-proxy/class_ index 7a6c4dc7d..0f71e6510 100644 --- a/application/hub/classes/apt-proxy/class_ +++ b/application/hub/classes/apt-proxy/class_ @@ -1,6 +1,6 @@ listenerPoolInstance; } - /** - * Setter for UNL instance - * - * @para $locatorInstance An instance of a LocateableNode class - * @return void - */ - protected final function setUniversalNodeLocatorInstance (LocateableNode $locatorInstance) { - // Set new UNL data array - $this->universalNodeLocatorInstance = $locatorInstance; - } - - /** - * Getter for UNL instance - * - * @return $unlData An instance of a LocateableNode class - */ - public final function getUniversalNodeLocatorInstance () { - // Return UNL data array - return $this->universalNodeLocatorInstance; - } - /** * Setter for assembler instance * diff --git a/application/hub/classes/handler/data/class_ b/application/hub/classes/handler/data/class_ index b4d610de1..724cccdb0 100644 --- a/application/hub/classes/handler/data/class_ +++ b/application/hub/classes/handler/data/class_ @@ -1,9 +1,9 @@ . */ abstract class BaseProtocolHandler extends BaseHubHandler implements HandleableProtocol { + // Load traits + use LocateableNodeTrait; + /** * Name of used protocol */ diff --git a/application/hub/classes/handler/protocol/ipv4/class_ b/application/hub/classes/handler/protocol/ipv4/class_ index b9f867670..3abda0aab 100644 --- a/application/hub/classes/handler/protocol/ipv4/class_ +++ b/application/hub/classes/handler/protocol/ipv4/class_ @@ -1,9 +1,9 @@ // Own namespace -namespace Org\Mxchange\Hub\Listener\; +namespace Org\Shipsimu\Hub\Listener\; // Import application-specific stuff -use Org\Mxchange\Hub\Listener\BaseListener; -use Org\Mxchange\Hub\Listener\Listenable; -use Org\Mxchange\Hub\Node\Node; +use Org\Shipsimu\Hub\Listener\BaseListener; +use Org\Shipsimu\Hub\Listener\Listenable; +use Org\Shipsimu\Hub\Node\Node; // Import framework stuff use Org\Mxchange\CoreFramework\Visitor\Visitable; diff --git a/application/hub/classes/helper/class_ b/application/hub/classes/helper/class_ index 8d206fcfd..102f93e9e 100644 --- a/application/hub/classes/helper/class_ +++ b/application/hub/classes/helper/class_ @@ -1,11 +1,11 @@ // Own namespace -namespace Org\Mxchange\Hub\Listener\Tcp\; +namespace Org\Shipsimu\Hub\Listener\Tcp\; // Import application-specific stuff -use Org\Mxchange\Hub\Node\Node; -use Org\Mxchange\Hub\Listener\BaseListener; -use Org\Mxchange\Hub\Listener\Listenable; +use Org\Shipsimu\Hub\Node\Node; +use Org\Shipsimu\Hub\Listener\BaseListener; +use Org\Shipsimu\Hub\Listener\Listenable; // Import framework stuff use Org\Mxchange\CoreFramework\Visitor\Visitable; diff --git a/application/hub/classes/listener/udp/class_ b/application/hub/classes/listener/udp/class_ index 91aa6a9e2..2a18b47ed 100644 --- a/application/hub/classes/listener/udp/class_ +++ b/application/hub/classes/listener/udp/class_ @@ -1,11 +1,11 @@ + * @version 0.0.0 + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2018 Hub Developer Team + * @license GNU GPL 3.0 or any newer version + * @link http://www.ship-simu.org + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +trait LocateableNodeTrait { + /** + * An instance of a LocateableNode class + */ + private $universalNodeLocatorInstance = NULL; + + /** + * Setter for UNL instance + * + * @para $locatorInstance An instance of a LocateableNode class + * @return void + */ + protected final function setUniversalNodeLocatorInstance (LocateableNode $locatorInstance) { + // Set new UNL data array + $this->universalNodeLocatorInstance = $locatorInstance; + } + + /** + * Getter for UNL instance + * + * @return $unlData An instance of a LocateableNode class + */ + public final function getUniversalNodeLocatorInstance () { + // Return UNL data array + return $this->universalNodeLocatorInstance; + } + +}