Skip to content

Commit

Permalink
Merge pull request #136 from Freja-eID/vebrpav/supportInferredMinRegi…
Browse files Browse the repository at this point in the history
…strationLevel

Extended MinRegistrationLevel enum, added INFERRED value.
  • Loading branch information
banepavl authored Jun 26, 2024
2 parents ba4f5ab + b65ce32 commit 0ccf86c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion FrejaEidClient/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.verisec.frejaeid</groupId>
<artifactId>FrejaEidClient</artifactId>
<version>2.23.0-SNAPSHOT</version>
<version>2.24.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>FrejaEidClient</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@
* <br> - {@linkplain #BASIC}
* <br> - {@linkplain #EXTENDED}
* <br> - {@linkplain #PLUS}
* <br> - {@linkplain #INFERRED}
*/
public enum MinRegistrationLevel {

BASIC("BASIC"),
EXTENDED("EXTENDED"),
PLUS("PLUS");
PLUS("PLUS"),
INFERRED("INFERRED");

private final String state;

Expand Down

0 comments on commit 0ccf86c

Please sign in to comment.