Skip to content

Commit

Permalink
Add getters to OAuth2AuthorizedClientId
Browse files Browse the repository at this point in the history
  • Loading branch information
ch4mpy committed Aug 14, 2023
1 parent 985e569 commit f035c57
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,14 @@ public OAuth2AuthorizedClientId(String clientRegistrationId, String principalNam
this.principalName = principalName;
}

public String getClientRegistrationId() {
return this.clientRegistrationId;
}

public String getPrincipalName() {
return this.principalName;
}

@Override
public boolean equals(Object obj) {
if (this == obj) {
Expand Down

0 comments on commit f035c57

Please sign in to comment.