]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/handler/message-types/class_
Added missing methods (as partial stubs)
[hub.git] / application / hub / main / handler / message-types / class_
index 5da7f27eaf61b9dfcdbc39fec30a142f5d75efc0..a3a98b6ff480d9b51eb76af5f2adccbf3354c4c8 100644 (file)
@@ -89,6 +89,27 @@ class NodeMessage???Handler extends BaseMessageHandler implements HandleableMess
                        $dataSetInstance->addCriteria('node_' . $key, $messageData[$key]);
                } // END - foreach
        }
+
+       /**
+        * Initializes configuration data from given message data array
+        *
+        * @param       $messageData    An array with all message data
+        * @return      void
+        */
+       protected function initMessageConfigurationData (array $messageData) {
+               $this->partialStub('Please implement this method.');
+       }
+
+       /**
+        * Removes configuration data with given message data array from global
+        * configuration
+        *
+        * @param       $messageData    An array with all message data
+        * @return      void
+        */
+       protected function removeMessageConfigurationData (array $messageData) {
+               $this->partialStub('Please implement this method.');
+       }
 }
 
 // [EOF]