Skip to content

Commit a299504

Browse files
devonfw#103: implemented requested changes
added javadocs
1 parent a7d686c commit a299504

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,29 @@
11
package com.devonfw.tools.ide.tool;
22

3+
/**
4+
* User interaction answers when a security risk was found and the user can f.e. choose to stay on the current unsafe
5+
* version, use the latest safe version, use the latest version or use the next safe version.
6+
*/
37
public enum SecurityRiskInteractionAnswer {
48

9+
/**
10+
* User answer to stay on the current unsafe version.
11+
*/
512
STAY,
613

14+
/**
15+
* User answer to install the latest of all safe versions.
16+
*/
717
LATEST_SAFE,
818

19+
/**
20+
* User answer to use the latest safe version.
21+
*/
922
SAFE_LATEST,
1023

24+
/**
25+
* User answer to use the next safe version.
26+
*/
1127
NEXT_SAFE,
1228

1329
}

0 commit comments

Comments
 (0)