Adds an :class:`.CourseOfAction` object to the :attr:`courses_of_action` collection.
(self, course_of_action)
| 157 | self.threat_actors.append(threat_actor) |
| 158 | |
| 159 | def add_course_of_action(self, course_of_action): |
| 160 | """Adds an :class:`.CourseOfAction` object to the |
| 161 | :attr:`courses_of_action` collection. |
| 162 | |
| 163 | """ |
| 164 | if self.courses_of_action is None: |
| 165 | self.courses_of_action = CoursesOfAction() |
| 166 | self.courses_of_action.append(course_of_action) |
| 167 | |
| 168 | def add_exploit_target(self, exploit_target): |
| 169 | """Adds an :class:`.ExploitTarget` object to the |
nothing calls this directly
no test coverage detected