]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/states/node/announced/class_NodeAnnouncedState.php
Continued:
[hub.git] / application / hub / main / states / node / announced / class_NodeAnnouncedState.php
index 30b080f920c2d929ddaa550516d577dec6ee551c..89e8e0c9d0b839e3e85f9003c8b333fd84680a5f 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A Announced node state class
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Hub Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.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
@@ -45,15 +45,23 @@ class NodeAnnouncedState extends BaseNodeState implements Stateable {
                // Get new instance
                $stateInstance = new NodeAnnouncedState();
 
-               // Debug message
-               $stateInstance->debugOutput('NODE-STATE: Has changed from ' . $nodeInstance->getPrintableState() . ' to ' . $stateInstance->getStateName() . '.');
-
                // Set the node instance
                $stateInstance->setNodeInstance($nodeInstance);
 
                // Return the prepared instance
                return $stateInstance;
        }
+
+       /**
+        * Changes the state if the announcement (to bootstrap node) was
+        * successful.
+        *
+        * @return      void
+        */
+       public function nodeAnnouncementSuccessful () {
+               // The node's announcement was successful
+               NodeStateFactory::createNodeStateInstanceByName('announcement_completed', $this->getNodeInstance());
+       }
 }
 
 // [EOF]