You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/common-core/src/test/java/org/eclipse/edc/identityhub/defaults/DiscriminatorMappingRegistryImplTest.java
Copy file name to clipboardExpand all lines: e2e-tests/identity-api-tests/src/test/java/org/eclipse/edc/identityhub/tests/PresentationApiEndToEndTest.java
Copy file name to clipboardExpand all lines: extensions/api/identity-api/verifiable-credentials-api/src/main/java/org/eclipse/edc/identityhub/api/verifiablecredentials/VerifiableCredentialApiExtension.java
Copy file name to clipboardExpand all lines: extensions/api/identity-api/verifiable-credentials-api/src/main/java/org/eclipse/edc/identityhub/api/verifiablecredentials/v1/unstable/VerifiableCredentialsApi.java
+12-1Lines changed: 12 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,7 @@
33
33
importorg.eclipse.edc.web.spi.ApiErrorDetail;
34
34
35
35
importjava.util.Collection;
36
+
importjava.util.Map;
36
37
37
38
@OpenAPIDefinition(info = @Info(description = "This is the Identity API for manipulating VerifiableCredentials", title = "VerifiableCredentials Identity API", version = "1"))
38
39
@Tag(name = "Verifiable Credentials")
@@ -104,7 +105,7 @@ public interface VerifiableCredentialsApi {
104
105
@Operation(description = "Delete a VerifiableCredential.",
105
106
operationId = "deleteCredential",
106
107
responses = {
107
-
@ApiResponse(responseCode = "200", description = "The VerifiableCredential was deleted successfully", content = {@Content(schema = @Schema(implementation = String.class))}),
108
+
@ApiResponse(responseCode = "200", description = "The VerifiableCredential was deleted successfully", content = {@Content(schema = @Schema(implementation = String.class))}),
108
109
@ApiResponse(responseCode = "400", description = "Request body was malformed, or the request could not be processed",
@ApiResponse(responseCode = "403", description = "The request could not be completed, because either the authentication was missing or was not valid.",
@@ -144,4 +145,14 @@ public interface VerifiableCredentialsApi {
Copy file name to clipboardExpand all lines: extensions/api/identity-api/verifiable-credentials-api/src/main/java/org/eclipse/edc/identityhub/api/verifiablecredentials/v1/unstable/VerifiableCredentialsApiController.java
0 commit comments