mirror of
https://github.com/itplr-kosit/validator.git
synced 2026-05-25 16:55:39 +00:00
#21 Umsetzung der API Rückgabe, erste version
This commit is contained in:
parent
a424fbbcfe
commit
ab31ed71b1
21 changed files with 532 additions and 147 deletions
|
|
@ -0,0 +1,21 @@
|
|||
package de.kosit.validationtool.api;
|
||||
|
||||
/**
|
||||
* Status der Empfehlung.
|
||||
*/
|
||||
public enum AcceptRecommendation {
|
||||
/**
|
||||
* Nicht definiert, weil eine Evaluierung nicht durchgeführt wurde, oder nicht durchgeführt werden konnte.
|
||||
*/
|
||||
UNDEFINED,
|
||||
|
||||
/**
|
||||
* Das Dokument ist gemäß Konfiguration valide und kann akzeptiert werden.
|
||||
*/
|
||||
ACCEPTABLE,
|
||||
|
||||
/**
|
||||
* Das Dokuemnt ist gemäß Konfiguration invalide und sollte NICHT akzeptiert werden.
|
||||
*/
|
||||
REJECT
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue