Skip to content

Commit

Permalink
Merge pull request quarkusio#22860 from sberyozkin/oidc_client_grant_…
Browse files Browse the repository at this point in the history
…property

Add OidcClientConfig Grant getter and setter
  • Loading branch information
gsmet authored Jan 13, 2022
2 parents f3fe07e + c40075b commit e14d6b1
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -241,4 +241,12 @@ public boolean isAbsoluteExpiresIn() {
public void setAbsoluteExpiresIn(boolean absoluteExpiresIn) {
this.absoluteExpiresIn = absoluteExpiresIn;
}

public void setGrant(Grant grant) {
this.grant = grant;
}

public Grant getGrant() {
return grant;
}
}

0 comments on commit e14d6b1

Please sign in to comment.