func toCVSSv3Impact()

in pkg/utils/grafeas.go [156:166]


func toCVSSv3Impact(v string) g.CVSSv3_Impact {
	switch v {
	case "H":
		return g.CVSSv3_IMPACT_HIGH
	case "L":
		return g.CVSSv3_IMPACT_LOW
	case "N":
		return g.CVSSv3_IMPACT_NONE
	}
	return g.CVSSv3_IMPACT_UNSPECIFIED
}