Skip to content
Snippets Groups Projects
Commit 4385c5b1 authored by Martin Vogel's avatar Martin Vogel
Browse files

refactor: add doc to auth level (planning#2016)

parent 29b15040
No related branches found
No related tags found
1 merge request!394planning#2016: ZBP Client
......@@ -3,10 +3,31 @@ package dev.fitko.fitconnect.api.domain.zbp.message;
import com.fasterxml.jackson.annotation.JsonValue;
import lombok.Getter;
/**
* Representation of the STORK-QAA-Levels
*/
@Getter
public enum AuthenticationLevel {
ONE(1), TWO(2), FOUR(4);
/**
* Basisregistrierung
*/
ONE(1),
/**
* Niedrig
*/
TWO(2),
/**
* Substantiell
*/
THREE(3),
/**
* Hoch
*/
FOUR(4);
@JsonValue
private final int level;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment