id; } /** * @return \string[] */ public function getMacs() { return $this->macs; } /** * @param \string[] $macs */ public function setMacs($macs) { $this->macs = $macs; } /** * @return \string[] (Read-only) */ public function getHosts() { return $this->hosts; } /** * @return string */ public function getIp() { return $this->ip; } /** * @return string */ public function getDesc() { return $this->desc; } /** * @param string $desc */ public function setDesc($desc) { $this->desc = $desc; } /** * @return boolean */ public function isForced() { return $this->forced; } /** * @param boolean $forced */ public function setForced($forced) { $this->forced = $forced; } /** * @return string */ public function getForcedMode() { return $this->forced_mode; } /** * @param string $forced_mode */ public function setForcedMode($forced_mode) { $this->forced_mode = $forced_mode; } /** * @return int */ public function getTmpModeExpire() { return $this->tmp_mode_expire; } /** * @param int $tmp_mode_expire */ public function setTmpModeExpire($tmp_mode_expire) { $this->tmp_mode_expire = $tmp_mode_expire; } /** * @return string */ public function getTmpMode() { return $this->tmp_mode; } /** * @param string $tmp_mode */ public function setTmpMode($tmp_mode) { $this->tmp_mode = $tmp_mode; } /** * @return string */ public function getSchedulingMode() { return $this->scheduling_mode; } /** * @return string */ public function getFilterState() { return $this->filter_state; } /** * @return int */ public function getCurrentMappingIdx() { return $this->current_mapping_idx; } /** * @return int */ public function getNextChange() { return $this->next_change; } }