|
@@ -136,6 +136,11 @@ class Cablemodem implements DeviceInterface, TenancyIdTraitInterface, LocationIn
|
|
|
*/
|
|
|
protected $transitionState = 'success';
|
|
|
|
|
|
+ /**
|
|
|
+ * @ORM\Column(type="boolean", nullable=true)
|
|
|
+ */
|
|
|
+ protected $mtaEnabled = false;
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* @return string
|
|
@@ -343,4 +348,24 @@ class Cablemodem implements DeviceInterface, TenancyIdTraitInterface, LocationIn
|
|
|
return array('mac' => $this->mac);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * @return boolean
|
|
|
+ */
|
|
|
+ public function getMtaEnabled()
|
|
|
+ {
|
|
|
+ return $this->mtaEnabled;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param boolean $mtaEnabled
|
|
|
+ *
|
|
|
+ * @return Cablemodem
|
|
|
+ */
|
|
|
+ public function setMtaEnabled($mtaEnabled)
|
|
|
+ {
|
|
|
+ $this->mtaEnabled = $mtaEnabled;
|
|
|
+
|
|
|
+ return $this;
|
|
|
+ }
|
|
|
+
|
|
|
}
|