-
Notifications
You must be signed in to change notification settings - Fork 29
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: introduce messages and JSON-LD transformers for DCP issuer #551
feat: introduce messages and JSON-LD transformers for DCP issuer #551
Conversation
...edc/identityhub/protocols/dcp/issuer/api/v1alpha/credentialrequest/CredentialRequestApi.java
Dismissed
Show dismissed
Hide dismissed
...tyhub/protocols/dcp/issuer/api/v1alpha/credentialrequest/CredentialRequestApiController.java
Dismissed
Show dismissed
Hide dismissed
@@ -30,18 +29,18 @@ | |||
@Path("/v1alpha/requests") | |||
public class CredentialRequestStatusApiController implements CredentialRequestStatusApi { | |||
|
|||
public CredentialRequestStatusApiController(TypeTransformerRegistry dcpRegistry) { |
Check notice
Code scanning / CodeQL
Useless parameter Note
21f00cf
to
2fc5099
Compare
"""; | ||
} | ||
|
||
@Schema(name = "IssuerMetadata", example = IssuerMetadataSchema.RESPONSE_EXAMPLE) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if we should utilize the externalDoc
functionality of OpenAPI to directly reference relevant parts of the DCP specification...
for a separate PR of course, but that would guarantee consistency.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could also remove the OpenApi
docs and use directly the specification as we do for DSP
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i'm OK with either
...c/main/java/org/eclipse/edc/identityhub/protocols/dcp/issuer/spi/model/CredentialObject.java
Show resolved
Hide resolved
2fc5099
to
9bc3cdb
Compare
What this PR changes/adds
Introduces transformers for:
CredentialRequestMessage
IssuerMetadata
CredentialStatus
CredentialObject
Move all the issuer relates stuff under
dcp-issuer
subfolder indcp
protocolMoves messages types under the
dcp-issuer-spi
moduleWhy it does that
Serde of issuance messages
Further notes
List other areas of code that have changed but are not necessarily linked to the main feature. This could be method
signature changes, package declarations, bugs that were encountered and were fixed inline, etc.
Who will sponsor this feature?
Please @-mention the committer that will sponsor your feature.
Linked Issue(s)
Closes #544
Please be sure to take a look at the contributing guidelines and our etiquette for pull requests.