Translate to English

This commit is contained in:
Renzo Kottmann 2020-03-18 15:51:46 +01:00 committed by Andreas Penski (init)
parent c6176d2109
commit bd60ddc41d

View file

@ -1,21 +1,21 @@
package de.kosit.validationtool.api; package de.kosit.validationtool.api;
/** /**
* Status der Empfehlung. * Tri-state describtion of a Recommendation.
*/ */
public enum AcceptRecommendation { public enum AcceptRecommendation {
/** /**
* Nicht definiert, weil eine Evaluierung nicht durchgeführt wurde, oder nicht durchgeführt werden konnte. * The evaluation of the overall validation could not be computed.
*/ */
UNDEFINED, UNDEFINED,
/** /**
* Das Dokument ist gemäß Konfiguration valide und kann akzeptiert werden. * Recommendation is to accept input based on the evaluation of the overall validation.
*/ */
ACCEPTABLE, ACCEPTABLE,
/** /**
* Das Dokuemnt ist gemäß Konfiguration invalide und sollte NICHT akzeptiert werden. * Recommendation is to reject input based on the evaluation of the overall validation.
*/ */
REJECT REJECT
} }