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: implemented requested changes
added javadocs
- Loading branch information
1 parent
a7d686c
commit a299504
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
cli/src/main/java/com/devonfw/tools/ide/tool/SecurityRiskInteractionAnswer.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 |
---|---|---|
@@ -1,13 +1,29 @@ | ||
package com.devonfw.tools.ide.tool; | ||
|
||
/** | ||
* User interaction answers when a security risk was found and the user can f.e. choose to stay on the current unsafe | ||
* version, use the latest safe version, use the latest version or use the next safe version. | ||
*/ | ||
public enum SecurityRiskInteractionAnswer { | ||
|
||
/** | ||
* User answer to stay on the current unsafe version. | ||
*/ | ||
STAY, | ||
|
||
/** | ||
* User answer to install the latest of all safe versions. | ||
*/ | ||
LATEST_SAFE, | ||
|
||
/** | ||
* User answer to use the latest safe version. | ||
*/ | ||
SAFE_LATEST, | ||
|
||
/** | ||
* User answer to use the next safe version. | ||
*/ | ||
NEXT_SAFE, | ||
|
||
} |