details = $details; } /** * @return string */ public function getDetails() { return $this->details; } /** * The justification type for this vulnerability. * * Accepted values: JUSTIFICATION_TYPE_UNSPECIFIED, COMPONENT_NOT_PRESENT, * VULNERABLE_CODE_NOT_PRESENT, VULNERABLE_CODE_NOT_IN_EXECUTE_PATH, * VULNERABLE_CODE_CANNOT_BE_CONTROLLED_BY_ADVERSARY, * INLINE_MITIGATIONS_ALREADY_EXIST * * @param self::JUSTIFICATION_TYPE_* $justificationType */ public function setJustificationType($justificationType) { $this->justificationType = $justificationType; } /** * @return self::JUSTIFICATION_TYPE_* */ public function getJustificationType() { return $this->justificationType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Justification::class, 'Google_Service_OnDemandScanning_Justification');