Skip to content

Commit

Permalink
AuthnAuthorityRepresentation default constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
cgeorgilakis-grnet committed Jul 30, 2024
1 parent 30a7f25 commit 7bfb6ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.keycloak</groupId>
<artifactId>keycloak-oidc-authnauthorities-mapper</artifactId>
<version>1.0.0</version>
<version>1.0.2</version>

<properties>
<keycloak.version>23.0.5</keycloak.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ public class AuthnAuthorityRepresentation {

private String id;
private String name;

public AuthnAuthorityRepresentation(){
}

public AuthnAuthorityRepresentation(String id, String name){
this.id = id;
this.name = name;
Expand Down

0 comments on commit 7bfb6ca

Please sign in to comment.