|
@@ -158,6 +158,16 @@ class Cablemodem implements DeviceInterface, TenancyIdTraitInterface, LocationIn
|
|
|
* @ORM\Column(type="boolean", nullable=true)
|
|
|
*/
|
|
|
protected $fixedIP = false;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @ORM\Column(type="boolean", nullable=true)
|
|
|
+ */
|
|
|
+ protected $cpeFixedIP = false;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @ORM\Column(type="boolean", nullable=true)
|
|
|
+ */
|
|
|
+ protected $mtaFixedIP = false;
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -454,5 +464,45 @@ class Cablemodem implements DeviceInterface, TenancyIdTraitInterface, LocationIn
|
|
|
|
|
|
return $this;
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @return boolean
|
|
|
+ */
|
|
|
+ public function getCpeFixedIP()
|
|
|
+ {
|
|
|
+ return $this->cpeFixedIP;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param boolean $cpeFixedIP
|
|
|
+ *
|
|
|
+ * @return Cablemodem
|
|
|
+ */
|
|
|
+ public function setCpeFixedIP($cpeFixedIP)
|
|
|
+ {
|
|
|
+ $this->cpeFixedIP = $cpeFixedIP;
|
|
|
+
|
|
|
+ return $this;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @return boolean
|
|
|
+ */
|
|
|
+ public function getMtaFixedIP()
|
|
|
+ {
|
|
|
+ return $this->mtaFixedIP;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param boolean $mtaFixedIP
|
|
|
+ *
|
|
|
+ * @return Cablemodem
|
|
|
+ */
|
|
|
+ public function setMtaFixedIP($mtaFixedIP)
|
|
|
+ {
|
|
|
+ $this->mtaFixedIP = $mtaFixedIP;
|
|
|
+
|
|
|
+ return $this;
|
|
|
+ }
|
|
|
|
|
|
}
|