Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
chore: update submodules (#113)
Browse files Browse the repository at this point in the history
Co-authored-by: eclipse-edc-bot <edc-bot@eclipse.org>
  • Loading branch information
github-actions[bot] and eclipse-edc-bot authored Nov 20, 2023
1 parent 5175806 commit bc87978
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/submodule/Connector
2 changes: 1 addition & 1 deletion docs/submodule/FederatedCatalog
2 changes: 1 addition & 1 deletion docs/submodule/GitHub
2 changes: 1 addition & 1 deletion docs/submodule/IdentityHub
Submodule IdentityHub updated 58 files
+3 −0 .github/release.yaml
+52 −51 DEPENDENCIES
+1 −1 core/identity-hub-api/build.gradle.kts
+3 −3 core/identity-hub-api/src/main/java/org/eclipse/edc/identityservice/api/PresentationApiExtension.java
+1 −1 core/identity-hub-api/src/main/java/org/eclipse/edc/identityservice/api/v1/PresentationApi.java
+2 −2 core/identity-hub-api/src/main/java/org/eclipse/edc/identityservice/api/v1/PresentationApiController.java
+1 −1 ...entity-hub-api/src/main/java/org/eclipse/edc/identityservice/api/validation/PresentationQueryValidator.java
+6 −6 core/identity-hub-api/src/test/java/org/eclipse/edc/identityservice/api/v1/PresentationApiControllerTest.java
+5 −5 ...ty-hub-api/src/test/java/org/eclipse/edc/identityservice/api/validation/PresentationQueryValidatorTest.java
+8 −0 core/identity-hub-core/build.gradle.kts
+40 −8 core/identity-hub-core/src/main/java/org/eclipse/edc/identityhub/DefaultServicesExtension.java
+59 −11 core/identity-hub-core/src/main/java/org/eclipse/edc/identityhub/core/CoreServicesExtension.java
+1 −1 core/identity-hub-core/src/main/java/org/eclipse/edc/identityhub/core/CredentialQueryResolverImpl.java
+51 −0 core/identity-hub-core/src/main/java/org/eclipse/edc/identityhub/core/PresentationCreatorRegistryImpl.java
+93 −0 core/identity-hub-core/src/main/java/org/eclipse/edc/identityhub/core/PresentationGeneratorImpl.java
+141 −0 core/identity-hub-core/src/main/java/org/eclipse/edc/identityhub/core/creators/JwtPresentationCreator.java
+170 −0 core/identity-hub-core/src/main/java/org/eclipse/edc/identityhub/core/creators/LdpPresentationCreator.java
+315 −0 core/identity-hub-core/src/main/resources/credentials.v1.json
+57 −0 core/identity-hub-core/src/main/resources/did.json
+78 −0 core/identity-hub-core/src/main/resources/jws2020.json
+0 −0 core/identity-hub-core/src/main/resources/presentation-submission.v1.json
+2 −2 core/identity-hub-core/src/test/java/org/eclipse/edc/identityhub/core/CredentialQueryResolverImplTest.java
+184 −0 core/identity-hub-core/src/test/java/org/eclipse/edc/identityhub/core/PresentationGeneratorImplTest.java
+151 −0 core/identity-hub-core/src/test/java/org/eclipse/edc/identityhub/core/creators/JwtPresentationCreatorTest.java
+184 −0 core/identity-hub-core/src/test/java/org/eclipse/edc/identityhub/core/creators/LdpPresentationCreatorTest.java
+79 −0 core/identity-hub-core/src/test/java/org/eclipse/edc/identityhub/core/creators/PresentationCreatorTest.java
+149 −0 core/identity-hub-core/src/test/java/org/eclipse/edc/identityhub/core/creators/TestData.java
+315 −0 core/identity-hub-core/src/test/resources/credentials.v1.json
+57 −0 core/identity-hub-core/src/test/resources/did.json
+69 −0 core/identity-hub-core/src/test/resources/examples.v1.json
+78 −0 core/identity-hub-core/src/test/resources/jws2020.json
+200 −0 core/identity-hub-core/src/test/resources/odrl.jsonld
+15 −0 core/identity-hub-core/src/test/resources/presentation-exchange.v1.json
+116 −0 core/identity-hub-core/src/test/resources/presentation-query.v08.json
+0 −28 core/identity-hub-transform/build.gradle.kts
+0 −71 ...transform/src/main/java/org/eclipse/edc/identityhub/transform/JsonObjectToPresentationQueryTransformer.java
+0 −175 ...sform/src/test/java/org/eclipse/edc/identityhub/transform/JsonObjectToPresentationQueryTransformerTest.java
+0 −12 core/identity-hub-transform/src/test/resources/presentation_query.json
+3 −3 e2e-tests/api-tests/src/test/java/org/eclipse/edc/identityhub/tests/ResolutionApiComponentTest.java
+4 −4 gradle.properties
+6 −1 gradle/libs.versions.toml
+0 −1 settings.gradle.kts
+65 −0 spi/identity-hub-spi/src/main/java/org/eclipse/edc/identityhub/spi/generator/PresentationCreator.java
+54 −0 spi/identity-hub-spi/src/main/java/org/eclipse/edc/identityhub/spi/generator/PresentationCreatorRegistry.java
+10 −2 spi/identity-hub-spi/src/main/java/org/eclipse/edc/identityhub/spi/generator/PresentationGenerator.java
+2 −4 spi/identity-hub-spi/src/main/java/org/eclipse/edc/identityhub/spi/model/IdentityHubConstants.java
+0 −21 spi/identity-hub-spi/src/main/java/org/eclipse/edc/identityhub/spi/model/InputDescriptorMapping.java
+0 −78 spi/identity-hub-spi/src/main/java/org/eclipse/edc/identityhub/spi/model/PresentationQuery.java
+0 −22 spi/identity-hub-spi/src/main/java/org/eclipse/edc/identityhub/spi/model/PresentationResponse.java
+0 −27 spi/identity-hub-spi/src/main/java/org/eclipse/edc/identityhub/spi/model/PresentationSubmission.java
+0 −20 ...dentity-hub-spi/src/main/java/org/eclipse/edc/identityhub/spi/model/presentationdefinition/Constraints.java
+0 −94 spi/identity-hub-spi/src/main/java/org/eclipse/edc/identityhub/spi/model/presentationdefinition/Field.java
+0 −18 ...ty-hub-spi/src/main/java/org/eclipse/edc/identityhub/spi/model/presentationdefinition/FilterExpression.java
+0 −18 spi/identity-hub-spi/src/main/java/org/eclipse/edc/identityhub/spi/model/presentationdefinition/Format.java
+0 −88 ...ity-hub-spi/src/main/java/org/eclipse/edc/identityhub/spi/model/presentationdefinition/InputDescriptor.java
+0 −102 ...-spi/src/main/java/org/eclipse/edc/identityhub/spi/model/presentationdefinition/PresentationDefinition.java
+1 −1 spi/identity-hub-spi/src/main/java/org/eclipse/edc/identityhub/spi/resolution/CredentialQueryResolver.java
+0 −69 spi/identity-hub-spi/src/test/java/org/eclipse/edc/identityhub/spi/model/PresentationSubmissionSerDesTest.java

0 comments on commit bc87978

Please sign in to comment.