mirror of
https://github.com/itplr-kosit/validator.git
synced 2026-05-25 16:55:39 +00:00
some cleanup
This commit is contained in:
parent
1a001a1af4
commit
7dc62012a6
22 changed files with 144 additions and 50 deletions
|
|
@ -1,21 +1,22 @@
|
|||
package de.kosit.validationtool.api;
|
||||
|
||||
/**
|
||||
* Tri-state describtion of a Recommendation.
|
||||
* Tri-state recommendation whether to accept the {@link Input} or not.
|
||||
*/
|
||||
public enum AcceptRecommendation {
|
||||
|
||||
/**
|
||||
* The evaluation of the overall validation could not be computed.
|
||||
*/
|
||||
UNDEFINED,
|
||||
|
||||
/**
|
||||
* Recommendation is to accept input based on the evaluation of the overall validation.
|
||||
* Recommendation is to accept {@link Input} based on the evaluation of the overall validation.
|
||||
*/
|
||||
ACCEPTABLE,
|
||||
|
||||
/**
|
||||
* Recommendation is to reject input based on the evaluation of the overall validation.
|
||||
* Recommendation is to reject {@link Input} based on the evaluation of the overall validation.
|
||||
*/
|
||||
REJECT
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue