id = $int_ID; $this->name = $str_Name; $this->mac = $int_MAC; $this->classification = $str_Class; } /** * Getter function for System Id * * @return integer */ public function get_ID() { return $this->id; } /** * Setter function for system ID * * @param integer $id_in */ public function set_ID($id_in) { $this->id = $id_in; } /** * Getter function for system name * * @return string */ public function get_Name() { return $this->name; } /** * Setter function for system name * * @param string $str_Name */ public function set_Name($str_Name) { $this->name = $str_Name; } /** * Getter function for system abbreviation * * @return string */ public function get_Abbreviation() { return $this->abbr; } /** * Setter function for system abbreviation * * @param string $abbr_in */ public function set_Abbreviation($abbr_in) { $this->abbr = $abbr_in; } /** * Getter function for MAC * * @return integer */ public function get_MAC() { return $this->mac; } /** * Setter function for MAC * * @param integer $int_MAC */ public function set_MAC($int_MAC) { $this->mac = $int_MAC; } /** * Getter function for classification * * @return string */ public function get_Classification() { return $this->classification; } /** * Settr function for classification * * @param string $str_Class */ public function set_Classification($str_Class) { $this->classification = $str_Class; } /** * Getter function for system accrediation type * * @return accrediation_types */ public function get_Accreditation_Type() { return $this->accred_type; } /** * Setter function for system accrediation type * * @param accrediation_types $accred_type_in */ public function set_Accreditation_Type($accred_type_in) { $this->accred_type = $accred_type_in; } /** * Getter function for system description * * @return string */ public function get_Description() { return $this->description; } /** * Setter function for system description * * @param string $str_desc_in */ public function set_Description($str_desc_in) { $this->description = $str_desc_in; } /** * Getter function for system mitigations * * @return string */ public function get_Mitigations() { return $this->mitigations; } /** * Setter function for system mitigations * * @param string $str_mit_in */ public function set_Mitigations($str_mit_in) { $this->mitigations = $str_mit_in; } /** * Getter function for system executive summary * * @return string */ public function get_Executive_Summary() { return $this->executive_summary; } /** * Setter function for system executive summary * * @param string $exec_sum_in */ public function set_Executive_Summary($exec_sum_in) { $this->executive_summary = $exec_sum_in; } /** * Getter function for system diagram * * @return mixed */ public function get_Diagram() { return $this->diagram; } /** * Setter function for system diagram * * @param mixed $bin_diag_in */ public function set_Diagram($bin_diag_in) { $this->diagram = $bin_diag_in; } /** * Getter function for preformated option tag * * @param boolean $selected_System * @param integer $ste_id * @return string */ public function get_Option($selected_System = null, $ste_id = null) { return ""; } }