mirror of
https://github.com/itplr-kosit/validator.git
synced 2026-05-25 16:55:39 +00:00
22 lines
519 B
Java
22 lines
519 B
Java
package de.kosit.validationtool.api;
|
|
|
|
/**
|
|
* 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 {@link Input} based on the evaluation of the overall validation.
|
|
*/
|
|
ACCEPTABLE,
|
|
|
|
/**
|
|
* Recommendation is to reject {@link Input} based on the evaluation of the overall validation.
|
|
*/
|
|
REJECT
|
|
}
|