Skip to content

Commit

Permalink
pr remarks
Browse files Browse the repository at this point in the history
  • Loading branch information
wolf4ood committed Sep 16, 2024
1 parent 0039850 commit 75f599b
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,17 @@ void token() {
var did = "did:example:subject";
var audience = "audience";
var token = "token";
var publicKeyReference = "publicKeyReference";
var name = "Name";
var expiresIn = 3600;

var client = StsClient.Builder.newInstance()
.id(id)
.clientId(clientId)
.name("Name")
.name(name)
.secretAlias(clientKeyAlias)
.privateKeyAlias(privateKeyAlias)
.publicKeyReference("publicKeyReference")
.publicKeyReference(publicKeyReference)
.did(did)
.build();

Expand Down

0 comments on commit 75f599b

Please sign in to comment.