Skip to content

Commit

Permalink
devonfw#103: implemented requested changes
Browse files Browse the repository at this point in the history
added javadocs
  • Loading branch information
jan-vcapgemini committed Feb 23, 2024
1 parent a7d686c commit a299504
Showing 1 changed file with 16 additions and 0 deletions.
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,

}

0 comments on commit a299504

Please sign in to comment.