|
@@ -110,6 +110,13 @@ class Host implements WorkflowInterface
|
|
|
*/
|
|
|
protected $ipv4Address;
|
|
|
|
|
|
+ /**
|
|
|
+ * @var integer $updated
|
|
|
+ *
|
|
|
+ * @ORM\Column(name="updated", type="integer", nullable=true)
|
|
|
+ */
|
|
|
+ protected $updated;
|
|
|
+
|
|
|
|
|
|
public function __construct()
|
|
|
{
|
|
@@ -317,4 +324,24 @@ class Host implements WorkflowInterface
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * @return integer
|
|
|
+ */
|
|
|
+ public function getUpdated()
|
|
|
+ {
|
|
|
+ return $this->updated;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param integer $updated
|
|
|
+ *
|
|
|
+ * @return Host
|
|
|
+ */
|
|
|
+ public function setUpdated($updated)
|
|
|
+ {
|
|
|
+ $this->updated = $updated;
|
|
|
+
|
|
|
+ return $this;
|
|
|
+ }
|
|
|
+
|
|
|
}
|