-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(ParticipantIdentity): implements the ID extractor #504
Merged
paullatzelsperger
merged 4 commits into
eclipse-tractusx:previews/preview_0_1_1_snapshot
from
wolf4ood:feat/467_participant_id_extractor
Jun 20, 2023
Merged
feat(ParticipantIdentity): implements the ID extractor #504
paullatzelsperger
merged 4 commits into
eclipse-tractusx:previews/preview_0_1_1_snapshot
from
wolf4ood:feat/467_participant_id_extractor
Jun 20, 2023
Conversation
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
wolf4ood
force-pushed
the
feat/467_participant_id_extractor
branch
4 times, most recently
from
June 19, 2023 14:55
6a4e72b
to
7c0ae78
Compare
paullatzelsperger
force-pushed
the
previews/preview_0_1_1_snapshot
branch
from
June 19, 2023 15:02
cf97446
to
0b953b1
Compare
wolf4ood
force-pushed
the
feat/467_participant_id_extractor
branch
5 times, most recently
from
June 19, 2023 16:32
4a7d483
to
04e6f04
Compare
…y credential + E2E test
wolf4ood
force-pushed
the
feat/467_participant_id_extractor
branch
from
June 19, 2023 16:46
04e6f04
to
d21d0f8
Compare
…dentity not extracted
wolf4ood
force-pushed
the
feat/467_participant_id_extractor
branch
3 times, most recently
from
June 20, 2023 10:53
a250f75
to
e3724fd
Compare
jimmarino
approved these changes
Jun 20, 2023
.../src/main/java/org/eclipse/tractusx/edc/iam/ssi/identity/rule/SsiAudienceValidationRule.java
Outdated
Show resolved
Hide resolved
.../test/java/org/eclipse/tractusx/edc/iam/ssi/identity/rule/SsiAudienceValidationRuleTest.java
Outdated
Show resolved
Hide resolved
spi/ssi-spi/src/main/java/org/eclipse/tractusx/edc/iam/ssi/spi/jsonld/JsonLdFieldExtractor.java
Show resolved
Hide resolved
wolf4ood
force-pushed
the
feat/467_participant_id_extractor
branch
from
June 20, 2023 12:03
e3724fd
to
dd3a6e5
Compare
spi/ssi-spi/src/main/java/org/eclipse/tractusx/edc/iam/ssi/spi/jsonld/JsonLdFieldExtractor.java
Outdated
Show resolved
Hide resolved
edc-tests/e2e-tests/src/test/java/org/eclipse/tractusx/edc/helpers/PolicyHelperFunctions.java
Show resolved
Hide resolved
...ore/src/main/java/org/eclipse/tractusx/edc/iam/ssi/identity/SsiIdentityServiceExtension.java
Outdated
Show resolved
Hide resolved
wolf4ood
force-pushed
the
feat/467_participant_id_extractor
branch
2 times, most recently
from
June 20, 2023 12:16
256c15b
to
73e0c79
Compare
wolf4ood
force-pushed
the
feat/467_participant_id_extractor
branch
from
June 20, 2023 12:22
73e0c79
to
3afe05c
Compare
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
paullatzelsperger
approved these changes
Jun 20, 2023
paullatzelsperger
merged commit Jun 20, 2023
eedcef2
into
eclipse-tractusx:previews/preview_0_1_1_snapshot
paullatzelsperger
added a commit
that referenced
this pull request
Jun 21, 2023
* feat: upgrade to 0.1.1-SNAPSHOT, fix resulting compile errors * chore: fix tests (#479) * feat: Initial implementation of Catena-X policies (#477) * Initial implementation of Catena-X policies * Add header * Fix checkstyle * Fix typo * Fix typo * Add javadoc * Add javadoc * Switch token eval to a policy validator function * chore: fix tests (#481) * feat(policy): (#487) * Cleanup namespaces, add extension class, implement summary constraint * Update credential names; add rule bindings * feat(SSI): implements the MIW client with Oauth2 as token provider for using the MIW APIs (#489) * fix: version catalog * feat(ParticipantIdentity): implements the ID extractor (#504) * feat(ParticipantIdentity): implements the ID extractor for the summary credential + E2E test * feat(ParticipantIdentity): more tests and ID extractor exception if identity not extracted * feat(ParticipantIdentity): add audience validation + tests * fix after review * remove short-term cache invalidation --------- Co-authored-by: Enrico Risa <[email protected]> Co-authored-by: Jim Marino <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
WHAT
Implements the ID extractor for Summary credential + E2E test
WHY
When receiving a
JWT
token with the VP(verifiable presentation) inside the participant need to extractthe counter party ID from the
SummaryCredential
FURTHER NOTES
ssi-spi
Closes #467