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: extensions/common/iam/verifiable-credentials/src/main/java/org/eclipse/edc/iam/verifiablecredentials/revocation/RevocationServiceRegistryImpl.java
Copy file name to clipboardexpand all lines: extensions/common/iam/verifiable-credentials/src/test/java/org/eclipse/edc/iam/verifiablecredentials/RevocationServiceRegistryImplTest.java
Copy file name to clipboardexpand all lines: spi/common/verifiable-credentials-spi/src/main/java/org/eclipse/edc/iam/verifiablecredentials/spi/model/RevocationServiceRegistry.java
+10
Original file line number
Diff line number
Diff line change
@@ -39,4 +39,14 @@ public interface RevocationServiceRegistry {
39
39
* @return {@link Result#success()} if the VC does not contain a {@link CredentialStatus}, or if all {@link CredentialStatus} objects are valid (= not revoked, not suspended), {@link Result#failure(String)} otherwise.
* Gets the revocation status of a {@link VerifiableCredential}. If no {@link RevocationListService} was registered for a particular
45
+
* type, the implementation must return {@link Result#success()} with a {@code null} content. If the credential does not contain any credentialStatus,
46
+
* the result is {@link Result#success()} as well.
47
+
*
48
+
* @param credential The VC
49
+
* @return {@link Result#success()} if the VC does not contain a {@link CredentialStatus}, or if all {@link CredentialStatus} objects are valid (= not revoked, not suspended), {@link Result#failure(String)} otherwise.
0 commit comments