-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: improve batching of credential requests (#170)
* feat: improve batching of credential requests * update tests, update gradle to 8.12 * checkstyle * revert lic header change
- Loading branch information
1 parent
aff106a
commit f4dba1d
Showing
13 changed files
with
186 additions
and
99 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 15 additions & 7 deletions
22
artifacts/src/main/resources/issuance/example/credential-request-message.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,21 @@ | ||
{ | ||
"@context": [ | ||
"https://w3id.org/dspace-dcp/v1.0/dcp.jsonld", | ||
"https://www.w3.org/2018/credentials/v1", | ||
"https://www.w3.org/2018/credentials/examples/v1" | ||
"https://w3id.org/dspace-dcp/v1.0/dcp.jsonld" | ||
], | ||
"type": "CredentialRequestMessage", | ||
"format": "jwt_vc_json", | ||
"credentialType": [ | ||
"VerifiableCredential", | ||
"OrganizationCredential" | ||
"credentials": [ | ||
{ | ||
"credentialType": "MembershipCredential", | ||
"format": "vcdm11_jwt" | ||
}, | ||
{ | ||
"credentialType": "OrganizationCredential", | ||
"format": "vcdm11_ld" | ||
}, | ||
{ | ||
"credentialType": "Iso9001Credential", | ||
"format": "vcdm20_jose" | ||
} | ||
|
||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.