forked from devonfw/IDEasy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
devonfw#103: Security Entry and determination of version Range for vu…
…lnerability
- Loading branch information
1 parent
e5c70e7
commit 34febf5
Showing
2 changed files
with
115 additions
and
20 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
cli/src/main/java/com/devonfw/tools/ide/url/model/file/SecurityEntry.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package com.devonfw.tools.ide.url.model.file; | ||
|
||
import com.devonfw.tools.ide.version.VersionRange; | ||
|
||
/** | ||
* A simple container with the information about a security entry. | ||
* | ||
* @param versionRange The version range of affected versions. | ||
* @param severity The severity of the security issue (0.0 - 10.0). | ||
* @param severityVersion The version of the severity. As of November 2023 its either v2 or v3. | ||
* @param cveName The CVE name. | ||
* @param Description The description of the security issue. | ||
* @param url The url to the security issue. | ||
*/ | ||
public record SecurityEntry(VersionRange versionRange, double severity, String severityVersion, String cveName, | ||
String Description, String url) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters